* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #e8e8f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    body {
        align-items: flex-start;
        padding-top: 5px;
    }
}

/* Arka plan geometrik desenler */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, 
            transparent 35%, 
            rgba(200, 200, 215, 0.4) 35%, 
            rgba(200, 200, 215, 0.4) 65%, 
            transparent 65%
        ),
        linear-gradient(-45deg, 
            transparent 35%, 
            rgba(200, 200, 215, 0.4) 35%, 
            rgba(200, 200, 215, 0.4) 65%, 
            transparent 65%
        );
    background-size: 180px 180px;
    background-position: 0 0, 90px 90px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, 
            transparent 30%, 
            rgba(180, 180, 200, 0.3) 30%, 
            rgba(180, 180, 200, 0.3) 70%, 
            transparent 70%
        ),
        linear-gradient(-45deg, 
            transparent 30%, 
            rgba(180, 180, 200, 0.3) 30%, 
            rgba(180, 180, 200, 0.3) 70%, 
            transparent 70%
        );
    background-size: 250px 250px;
    background-position: 125px 125px, 0 0;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    z-index: 1;
    padding: 20px;
    box-sizing: border-box;
}

/* Pentagon kartlar */
.header-cards {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 5;
}

.pentagon-card {
    width: 220px;
    height: 160px;
    background: linear-gradient(135deg, #1a3d5c 0%, #2d4f73 50%, #1a3d5c 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Pentagon şekli */
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 50% 100%, 0% 75%);
    box-shadow: 0 8px 25px rgba(26, 61, 92, 0.4);
    z-index: 10;
}

.pentagon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    clip-path: inherit;
}

.pentagon-card:hover {
    transform: translateY(-5px);
    filter: brightness(1.05);
}

.pentagon-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 15;
}

.pentagon-card h2 {
    color: white;
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 20;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    margin-top: -20px;
}

/* Logo bölümü */
.logo-container {
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 100px;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}

.logo-icon {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.logo-text h1 {
    font-size: 5.5em;
    font-weight: 900;
    color: #1e4a6b;
    letter-spacing: 8px;
    margin: 0;
    line-height: 0.9;
}

.logo-text p {
    font-size: 1.4em;
    color: #1e4a6b;
    font-weight: 600;
    letter-spacing: 4.5px;
    margin-top: 12px;
    opacity: 0.9;
    text-align: left;
    width: 100%;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .container {
        gap: 50px;
        padding: 15px;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 20px;
    }
    
    /* Services sayfası için özel düzenleme */
    .container:has(.services-header) {
        gap: 20px;
        padding-top: 5px;
        padding-left: 5px;
        padding-right: 5px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        min-height: auto;
    }
    
    .header-cards {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pentagon-card {
        width: 160px;
        height: 110px;
    }
    
    .pentagon-card h2 {
        font-size: 1.1em;
        margin-top: -15px;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 20px;
        padding: 30px 25px;
        text-align: center;
        width: 100%;
        max-width: 400px;
    }
    
    .logo-icon {
        width: 120px;
        height: 120px;
    }
    
    .logo-text h1 {
        font-size: 3.5em;
        letter-spacing: 4px;
        text-align: center;
    }
    
    .logo-text p {
        font-size: 1em;
        letter-spacing: 3px;
        text-align: center;
    }
    
    /* Hizmetler sayfası responsive */
    .services-header {
        margin-bottom: 30px;
        padding: 0 5px;
        width: 100%;
        position: relative;
        z-index: 5;
        max-width: 100%;
        overflow: hidden;
    }
    
    .services-header h1 {
        font-size: 2.2em;
        letter-spacing: 1px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        max-width: 100%;
        display: block;
        text-align: center;
        white-space: normal;
        line-height: 1.1;
    }
    
    .services-box {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
        max-width: 100%;
        margin-top: 10px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .services-column li {
        font-size: 1.1em;
        margin-bottom: 15px;
    }
    
    .back-button {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
    }
    
    .back-button a {
        display: inline-block;
        padding: 12px 24px;
        font-size: 1em;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        min-width: 200px;
    }
    
    /* Hakkımızda sayfası responsive */
    .about-box {
        padding: 30px 25px;
        max-width: 100%;
    }
    
    .about-box h1 {
        font-size: 1.6em;
    }
    
    .about-box p {
        font-size: 1em;
    }
    
    .signature h2 {
        font-size: 1.4em;
    }
    
    /* Footer responsive */
    .footer {
        padding: 40px 25px;
        margin-top: 40px;
    }
    
    .footer-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo-icon {
        width: 80px;
        height: 80px;
    }
    
    .footer-logo-text h3 {
        font-size: 1.8em;
    }
    
    .footer-logo-text p {
        font-size: 0.8em;
    }
    
    .footer-description p {
        font-size: 1em;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-links {
        align-items: center;
    }
    
    .address-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        gap: 30px;
        padding: 10px;
        padding-top: 15px;
    }
    
    .header-cards {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .pentagon-card {
        width: 180px;
        height: 120px;
    }
    
    .pentagon-card h2 {
        font-size: 1.2em;
        margin-top: -10px;
    }
    
    .logo-container {
        padding: 25px 20px;
        gap: 15px;
    }
    
    .logo-text h1 {
        font-size: 2.8em;
        letter-spacing: 3px;
    }
    
    .logo-icon {
        width: 100px;
        height: 100px;
    }
    
    .logo-text p {
        font-size: 0.9em;
        letter-spacing: 2px;
    }
    
    /* Hizmetler sayfası responsive */
    .services-header {
        margin-bottom: 25px;
        padding: 0 3px;
        width: 100%;
        position: relative;
        z-index: 5;
        max-width: 100%;
        overflow: hidden;
    }
    
    .services-header h1 {
        font-size: 1.8em;
        letter-spacing: 0.5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        max-width: 100%;
        display: block;
        text-align: center;
        white-space: normal;
        line-height: 1.1;
    }
    
    .services-box {
        padding: 25px 15px;
    }
    
    .services-column li {
        font-size: 1em;
        margin-bottom: 12px;
    }
    
    /* Back button responsive */
    .back-button {
        margin-bottom: 15px;
    }
    
    .back-button a {
        padding: 10px 20px;
        font-size: 0.9em;
        min-width: 180px;
    }
    
    /* Hakkımızda sayfası responsive */
    .about-box {
        padding: 25px 20px;
    }
    
    .about-box h1 {
        font-size: 1.4em;
    }
    
    .about-box p {
        font-size: 0.95em;
    }
    
    .signature h2 {
        font-size: 1.2em;
    }
    
    /* İletişim sayfası responsive */
    .contact-box {
        padding: 25px 20px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        word-break: normal;
    }
    
    .contact-item {
        gap: 12px;
        margin-bottom: 20px;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: nowrap;
        min-height: 35px;
        position: relative;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
        margin-top: 0;
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .contact-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .contact-text {
        flex: 1;
        min-width: 0;
        margin-left: 47px;
        word-break: normal;
        overflow-wrap: normal;
        white-space: normal;
        width: calc(100% - 47px);
        position: relative;
    }
    
    .contact-text p {
        font-size: 0.9em;
        word-wrap: normal;
        overflow-wrap: normal;
        line-height: 1.3;
        hyphens: none;
        -webkit-hyphens: none;
        -ms-hyphens: none;
        word-break: normal;
        white-space: normal;
        position: relative;
        left: 0;
    }
    
    /* Instagram linki için özel düzenleme - mobil */
    .contact-item a .contact-text {
        margin-left: 47px;
        width: calc(100% - 47px);
        position: relative;
    }
    
    .contact-item a .contact-text p {
        position: relative;
        left: 0;
    }
    
    /* Footer responsive - küçük ekranlar */
    .footer {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .footer-header {
        gap: 15px;
    }
    
    .footer-logo-icon {
        width: 70px;
        height: 70px;
    }
    
    .footer-logo-text h3 {
        font-size: 1.5em;
    }
    
    .footer-logo-text p {
        font-size: 0.7em;
    }
    
    .footer-description p {
        font-size: 0.9em;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-column h4 {
        font-size: 1.1em;
    }
    
    .contact-icon {
        width: 25px;
        height: 25px;
    }
    
    .contact-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .contact-text p {
        font-size: 0.8em;
    }
    
    .social-link {
        padding: 6px 10px;
        font-size: 0.8em;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
    
    .address-icon {
        width: 25px;
        height: 25px;
    }
    
    .address-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .address-text p {
        font-size: 0.8em;
    }
}

@media (max-width: 360px) {
    .container {
        gap: 20px;
        padding: 5px;
        padding-top: 10px;
    }
    
    .pentagon-card {
        width: 160px;
        height: 100px;
    }
    
    .pentagon-card h2 {
        font-size: 1em;
    }
    
    .logo-container {
        padding: 20px 15px;
    }
    
    .logo-text h1 {
        font-size: 2.2em;
    }
    
    .logo-icon {
        width: 80px;
        height: 80px;
    }
    
    .logo-text p {
        font-size: 0.8em;
    }
    
    .services-header {
        margin-bottom: 20px;
        padding: 0 2px;
        width: 100%;
        position: relative;
        z-index: 5;
        max-width: 100%;
        overflow: hidden;
    }
    
    .services-header h1 {
        font-size: 1.6em;
        letter-spacing: 0.5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        max-width: 100%;
        display: block;
        text-align: center;
        white-space: normal;
        line-height: 1.1;
    }
    
    .about-box h1 {
        font-size: 1.2em;
    }
    
    .contact-box {
        padding: 20px 15px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        word-break: normal;
    }
    
    .contact-item {
        gap: 10px;
        margin-bottom: 15px;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: nowrap;
        min-height: 30px;
        position: relative;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        margin-top: 0;
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .contact-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .contact-text {
        flex: 1;
        min-width: 0;
        margin-left: 40px;
        word-break: normal;
        overflow-wrap: normal;
        white-space: normal;
        width: calc(100% - 40px);
        position: relative;
    }
    
    .contact-text p {
        font-size: 0.8em;
        word-wrap: normal;
        overflow-wrap: normal;
        line-height: 1.2;
        hyphens: none;
        -webkit-hyphens: none;
        -ms-hyphens: none;
        word-break: normal;
        white-space: normal;
        position: relative;
        left: 0;
    }
    
    /* Instagram linki için özel düzenleme - küçük ekranlar */
    .contact-item a .contact-text {
        margin-left: 40px;
        width: calc(100% - 40px);
        position: relative;
    }
    
    .contact-item a .contact-text p {
        position: relative;
        left: 0;
    }
    
    .footer {
        padding: 20px 15px;
    }
    
    /* Back button responsive - küçük ekranlar */
    .back-button {
        margin-bottom: 10px;
    }
    
    .back-button a {
        padding: 8px 16px;
        font-size: 0.85em;
        min-width: 160px;
    }
}

/* İletişim sayfası stilleri */
.contact-box {
    background: white;
    border-radius: 25px;
    padding: 60px 80px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    width: 100%;
    color: #1e4a6b;
    box-sizing: border-box;
    overflow: hidden;
    word-break: normal;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    width: 100%;
    flex-wrap: nowrap;
    min-height: 50px;
    position: relative;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #1e4a6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-text {
    flex: 1;
    min-width: 0;
    margin-left: 75px;
    word-break: normal;
    overflow-wrap: normal;
    white-space: normal;
    width: calc(100% - 75px);
    position: relative;
}

.contact-text p {
    font-size: 1.3em;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: #1e4a6b;
    word-wrap: normal;
    overflow-wrap: normal;
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    word-break: normal;
    white-space: normal;
    text-align: left;
    position: relative;
    left: 0;
}

.contact-text p:not(:last-child) {
    margin-bottom: 5px;
}

/* Instagram linki için özel düzenleme */
.contact-item a .contact-text {
    margin-left: 75px;
    width: calc(100% - 75px);
    position: relative;
}

.contact-item a .contact-text p {
    position: relative;
    left: 0;
}

/* İletişim sayfası responsive - zaten yukarıda düzenlendi */
/* Hizmetler sayfası stilleri */
.back-button {
    position: absolute;
    top: 30px;
    left: -50px;
    z-index: 10;
}

.back-button a {
    color: #1e4a6b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.back-button a:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
    max-width: 100%;
    overflow: hidden;
}

.services-header h1 {
    font-size: 3.5em;
    font-weight: 900;
    color: #1e4a6b;
    letter-spacing: 4px;
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    max-width: 100%;
    display: block;
    text-align: center;
    white-space: normal;
}

.services-box {
    background: linear-gradient(135deg, #0f2a3d 0%, #1e3a5c 50%, #0f2a3d 100%);
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 20px 60px rgba(15, 42, 61, 0.5);
    display: flex;
    gap: 80px;
    justify-content: center;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.services-column {
    flex: 1;
}

.services-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-column li {
    color: white;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.services-column li:last-child {
    border-bottom: none;
}

.services-column li:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 15px;
    border-radius: 8px;
}

/* Hakkımızda sayfası stilleri */
.about-box {
    background: linear-gradient(135deg, #0f2a3d 0%, #1e3a5c 50%, #0f2a3d 100%);
    border-radius: 20px;
    padding: 60px 80px;
    box-shadow: 0 25px 80px rgba(15, 42, 61, 0.5);
    max-width: 900px;
    width: 100%;
    color: white;
}

.about-box h1 {
    font-size: 2.2em;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
}

.about-box p {
    font-size: 1.3em;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
}

.about-box p:last-of-type {
    margin-bottom: 40px;
}

.signature {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.signature p {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

    .signature h2 {
        font-size: 1.8em;
        font-weight: 700;
        margin: 0;
        text-align: center;
    }
    
    /* Footer stilleri */
    .footer {
        width: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
        border-radius: 30px;
        padding: 60px 80px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        margin-top: 60px;
        position: relative;
        overflow: hidden;
    }
    
    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #1e4a6b 0%, #2d4f73 50%, #1e4a6b 100%);
    }
    
    .footer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 50px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(30, 74, 107, 0.1);
    }
    
    .footer-logo {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .footer-logo-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}
    
    .footer-logo-icon svg {
        width: 100%;
        height: 100%;
    }
    
    .footer-logo-text h3 {
        font-size: 2.2em;
        font-weight: 900;
        color: #1e4a6b;
        margin: 0;
        letter-spacing: 3px;
    }
    
    .footer-logo-text p {
        font-size: 0.9em;
        color: #1e4a6b;
        font-weight: 600;
        margin: 5px 0 0 0;
        letter-spacing: 2px;
        opacity: 0.8;
    }
    
    .footer-description {
        max-width: 400px;
    }
    
    .footer-description p {
        font-size: 1.1em;
        color: #1e4a6b;
        line-height: 1.6;
        margin: 0;
        opacity: 0.8;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
        margin-bottom: 40px;
    }
    
    .footer-column h4 {
        font-size: 1.3em;
        font-weight: 700;
        color: #1e4a6b;
        margin: 0 0 20px 0;
        letter-spacing: 1px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        background: #1e4a6b;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .contact-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(30, 74, 107, 0.3);
    }
    
    .contact-icon svg {
        width: 18px;
        height: 18px;
        color: white;
    }
    
    .contact-text p {
        font-size: 1em;
        font-weight: 600;
        color: #1e4a6b;
        margin: 0;
        line-height: 1.4;
    }
    
    .contact-text p:not(:last-child) {
        margin-bottom: 3px;
    }
    
    .social-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .social-link {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: #1e4a6b;
        font-weight: 600;
        font-size: 1em;
        padding: 10px 15px;
        border-radius: 12px;
        transition: all 0.3s ease;
        background: rgba(30, 74, 107, 0.05);
    }
    
    .social-link:hover {
        background: rgba(30, 74, 107, 0.1);
        transform: translateX(5px);
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
        color: #1e4a6b;
    }
    
    .address-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .address-icon {
        width: 35px;
        height: 35px;
        background: #1e4a6b;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .address-icon svg {
        width: 18px;
        height: 18px;
        color: white;
    }
    
    .address-text p {
        font-size: 1em;
        font-weight: 600;
        color: #1e4a6b;
        margin: 0;
        line-height: 1.4;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 30px;
    }
    
    .footer-line {
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(30, 74, 107, 0.2) 50%, transparent 100%);
        margin-bottom: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.9em;
        color: #1e4a6b;
        opacity: 0.7;
        margin: 0;
    }
    
