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

body {
    font-family: 'Aptos', 'Segoe UI', 'Calibri', sans-serif;
    line-height: 1.6;
    color: #ECECEC;
    background: #282E3A;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #3D4957;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Aptos', 'Segoe UI', 'Calibri', sans-serif;
    text-align: center;
}

.logo h2 {
    color: #a5a5a5;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.logo p {
    color: #a5a5a5;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ECECEC;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #DBC7A6;
}

.nav-menu li.active a {
    color: #DBC7A6;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ECECEC;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3D4957, #282E3A);
    color: #ECECEC;
    padding: 120px 0 80px;
    text-align: left;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 10rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-description {
    flex: 1;
    max-width: 600px;
}

.hero-description p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-image {
    flex-shrink: 0;
}

.hero-image img {
    width: 300px;
    height: 360px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #DBC7A6;
}

.hero-services {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.hero-services li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #DBC7A6;
    font-weight: 500;
}

.hero-services li a {
    color: #DBC7A6;
    text-decoration: none;
    transition: color 0.3s;
}

.hero-services li a:hover {
    color: #ECECEC;
}

.hero-services li:before {
    content: "▸ ";
    margin-right: 0.5rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    background: #DBC7A6;
    color: #282E3A;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #DBC7A6;
}

.section-header p {
    font-size: 1.2rem;
    color: #ECECEC;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #3D4957;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #DBC7A6;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ECECEC;
}

.cv-download {
    margin-top: 2rem;
    text-align: center;
}

.cv-link {
    display: inline-block;
    background: #DBC7A6;
    color: #282E3A;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cv-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 110, 0.3);
}

.about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.profile-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #DBC7A6;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    width: 100%;
}

.stat {
    padding: 0.5rem;
    background: #282E3A;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.stat h6 {
    font-size: 1rem;
    color: #DBC7A6;
    margin-bottom: 0.2rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #282E3A;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #3D4957;
    margin-bottom: 0.5rem;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ECECEC;
}

.service-card p {
    color: #ECECEC;
    line-height: 1.6;
}

.service-images {
    display: flex;
    gap: 4rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.service-images img {
    width: 600;
    height: 385px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #DBC7A6;
}

.image-description {
    font-size: 0.9rem;
    color: #DBC7A6;
    text-align: center;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #3D4957;
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 120px;
    max-width: 800px;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #3D4957;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #DBC7A6;
}

.contact-item p {
    color: #ECECEC;
    line-height: 1.6;
}

.contact-link {
    color: #DBC7A6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #ECECEC;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #282E3A;
    color: #DBC7A6;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #3D4957;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 120px 20px 80px;
        text-align: center;
    }

    .hero-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        padding: 0;
        max-width: none;
        text-align: left;
    }

    .hero-image img {
        width: 250px;
        height: 250px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-right {
        margin-top: 2rem;
    }
    
    .profile-photo {
        width: 200px;
        height: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        order: 2;
    }

    .cv-download {
        order: 3;
        margin-top: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .service-images {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .service-images img {
        width: 480px;
        height: 260px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-images {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .service-images img {
        width: 280px;
        height: 180px;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }


}