@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --white: #ffffff;
    --bg: #F8F9FA;
    --main-green: #1B4332;
    --green-hover: #2D6A4F;
    --text-color: #333333;
    --muted: #6b6b6b;
    --shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
    --radius: 20px;
    --container: 1100px;
    --gold: #DAA520;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #111;
    line-height: 1.6;
    background-color: var(--bg);
    background-image: url('—Pngtree—white diamond pattern background_1920075.png');
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: 100%;
}

.container {
    width: min(94%, var(--container));
    margin: auto;
}

header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
}

.site-logosu {
    height: 75px;
    width: auto;
    margin-left: -35px;
    display: block;
}

nav ul {
    display: flex;
    gap: 8px;
    align-items: center;
}

nav a {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 12px;
    color: #6b6b6b;
    border-radius: 10px;
    transition: 0.3s;
}

    nav a:hover, nav a.active {
        color: #2D6A4F;
        background: rgba(46, 125, 50, 0.06);
    }

.page-content {
    margin-top: 60px;
    min-height: 60vh;
    display: flex;
    justify-content: center;
}

.content-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
    max-width: 950px;
    width: 100%;
}

.about-grid {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.about-image {
    flex: 0 0 300px;
}

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        object-fit: cover;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

.about-text {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-title-wrapper {
    text-align: center;
    margin-bottom: 15px;
}

    .premium-title-wrapper h1 {
        color: var(--main-green);
        font-family: 'Cormorant Garamond', serif;
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 5px;
        letter-spacing: -0.5px;
    }

.premium-subtitle {
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.premium-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto 30px auto;
    border-radius: 2px;
}

.luxury-text p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
}

.highlight-gold { 
    color: var(--main-green); 
    font-weight: 700; 
    background: linear-gradient(180deg, transparent 60%, rgba(218, 165, 32, 0.3) 60%);
    display: inline-block;
    padding: 0 2px;
    white-space: nowrap !important;
}

.certificate-section {
    margin-top: 15px;
    background: #FDFBF5;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 3px solid var(--gold);
}

.cert-title {
    color: var(--main-green);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .cert-title i {
        color: var(--gold);
    }

.premium-cert-list {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

    .premium-cert-list li {
        margin-bottom: 8px;
        color: #555;
        font-size: 0.95rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .premium-cert-list li i {
            color: var(--gold);
            font-size: 0.85rem;
        }

.action-area {
    margin-top: 30px;
    text-align: left;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--main-green), var(--green-hover));
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(46, 125, 50, 0.3);
    }

footer {
    background: none !important;
    margin: 0;
    padding: 0;
    width: 100%;
}

.premium-footer {
    background-color: #FCFBF7 !important;
    border-top: 4px solid var(--gold);
    padding-top: 1px;
    margin-top: 90px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.02);
    position: relative;
}

.footer-fancy-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-logo-box {
    flex: 0 0 250px;
    text-align: left;
}

.fancy-logo {
    width: 100%;
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.04));
    transition: transform 0.4s ease;
}

    .fancy-logo:hover {
        transform: scale(1.03);
    }

.footer-divider {
    width: 2px;
    height: 140px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.footer-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fancy-heading {
    color: var(--main-green);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .fancy-heading i {
        color: var(--gold);
    }

.fancy-contact-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
}

.working-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 10px;
    margin-right: 20px;
}

.icon-gold {
    background: #ffffff;
    color: var(--gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(218, 165, 32, 0.15);
    font-size: 1.1rem;
    transition: 0.3s;
}

.contact-item:hover .icon-gold, .working-hours:hover .icon-gold {
    background: var(--gold);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    margin-top: 1px;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #666;
}

.bottom-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.bottom-left span:first-child {
    color: var(--main-green);
    font-weight: 700;
}

.legal-links {
    margin-left: 15px;
}

    .legal-links a {
        color: #888;
        transition: 0.3s ease;
    }

        .legal-links a:hover {
            color: var(--gold);
        }

.bottom-right {
    text-align: right;
}

.dev-name {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 800;
}

@media (max-width: 900px) {
    .footer-fancy-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-logo-box {
        text-align: center;
    }

    .footer-divider {
        width: 150px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    .fancy-heading {
        justify-content: center;
    }

    .fancy-contact-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .bottom-bar-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .legal-links {
        display: block;
        margin-top: 8px;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column !important;
        padding: 10px 0 !important;
        gap: 12px !important;
    }

    .site-logosu {
        height: 46px !important;
        margin-left: 0 !important;
        margin-bottom: 5px !important;
        display: block !important;
        margin: 0 auto !important;
    }

    nav ul {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        gap: 2px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    nav a {
        font-size: 10.5px !important;
        padding: 6px 6px !important;
        white-space: nowrap !important;
        letter-spacing: -0.4px !important;
    }

    .page-content {
        margin-top: 15px !important;
    }

    .content-box {
        padding: 20px 15px !important;
        width: 95% !important;
        margin: 0 auto !important;
    }

    .about-grid {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .premium-title-wrapper h1 {
        font-size: 2.2rem !important;
    }
}
