/* home.css */

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
     min-height: 99vh -30px; 
    box-sizing: border-box;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 30px;
}

.text-section {
    flex: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.heading {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #003366;
    font-family: 'Open Sans', sans-serif;
    padding-left: 20px;
}

.subheading {
    font-size: 22px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #003366;
    font-family: 'Open Sans', sans-serif;
    padding-left: 20px;
}

.paragraph {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #555;
    font-family: 'Open Sans', sans-serif;
	text-align: center;
}
.reference{
	font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #555;
    font-family: 'Open Sans', sans-serif;
	text-align: center;

	
}

.image-section {
    flex: 1;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: auto;
    overflow: hidden;
}

.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.social-section {
    margin-top: 20px;
    text-align: center;
}

.linkedin-link {
    color: #0077b5; /* LinkedIn'in mavi tonu */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.linkedin-link:hover {
    color: #005582; /* Hover'da daha koyu bir mavi ton */
}
@media (max-width: 760px) {
    .container {
        flex-direction: column;
        padding-top: 50px;
    }

    .text-section {
        text-align: center;
        padding: 20px 0;
    }

    .image-section {
        margin-top: 20px;
    }
}
