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

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #1a3d1a;
    color: #d4af37;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
}

.container {
    max-width: 900px;
    width: 100%;
    position: relative;
    background-color: rgba(26, 61, 26, 0.8);
    border-radius: 15px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Decorative Lines */
.decorative-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.top-line {
    top: 30px;
}

.bottom-line {
    bottom: 30px;
}

/* Language Toggle */
.language-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
    z-index: 100;
}

.lang-btn {
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    padding: 6px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    color: #d4af37;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9em;
    text-decoration: none;
}

.lang-btn:hover {
    background-color: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.lang-btn.active {
    background-color: rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
    color: #f0d674;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.lang-btn .flag {
    font-size: 1.2em;
    line-height: 1;
}

.lang-btn .lang-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Navigation Bar */
.top-nav {
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 0;
}

.nav-list li {
    margin: 0;
    flex-shrink: 0;
}

.nav-list a {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.9em;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block;
    letter-spacing: 0.3px;
    border: 1px solid transparent;
    white-space: nowrap;
}

.nav-list a:hover {
    color: #f0d674;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.nav-list a:active {
    transform: translateY(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Header Section */
.header {
    text-align: center;
    margin-bottom: 50px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    animation: gentle-glow 3s ease-in-out infinite alternate;
}

@keyframes gentle-glow {
    from {
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    }
    to {
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.7));
    }
}

/* Main Content */
.main-content {
    text-align: center;
}

/* Hero Section */
.hero {
    margin-bottom: 40px;
}

.tagline {
    font-size: 1.5em;
    font-weight: normal;
    color: #d4af37;
    letter-spacing: 1px;
    line-height: 1.6;
}

/* About Me Section */
.about-section {
    margin-bottom: 50px;
    padding: 40px;
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    text-align: left;
    scroll-margin-top: 20px;
}

.about-title {
    font-size: 2em;
    color: #d4af37;
    margin-bottom: 25px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #d4af37;
    letter-spacing: 0.3px;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services {
    margin-bottom: 50px;
}

.service-card {
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 35px;
    margin-bottom: 30px;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    scroll-margin-top: 20px;
}

.service-card:hover {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.service-card:last-child {
    margin-bottom: 0;
}

.service-title {
    font-size: 1.6em;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: left;
}

.service-headline {
    font-size: 1.4em;
    color: #f0d674;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.service-body {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #d4af37;
    letter-spacing: 0.3px;
}

.benefits-title {
    font-size: 1.2em;
    color: #f0d674;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    padding-left: 0;
}

.benefits-list li {
    font-size: 1.05em;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    color: #d4af37;
}

.benefits-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.2em;
}

.service-cta {
    font-size: 1.1em;
    color: #f0d674;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Contact Section */
.contact {
    margin-bottom: 40px;
    padding: 30px;
    background-color: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: left;
}

.contact-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    justify-content: space-between;
}

.contact-photo {
    flex-shrink: 0;
}

.photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.contact-info {
    flex: 1;
    text-align: left;
}

.contact-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-logo-img {
    max-width: 150px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.contact-info h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: normal;
    letter-spacing: 1px;
}

.contact-details {
    font-size: 1.1em;
    line-height: 2;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-details a:hover {
    color: #f0d674;
    border-bottom-color: #f0d674;
}

.location {
    font-size: 1.2em;
    margin-top: 15px;
    letter-spacing: 2px;
}

/* Call to Action */
.cta {
    margin-top: 40px;
    padding: 25px;
}

.cta-text {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.cta-action {
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 1px;
    color: #f0d674;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    margin-top: 60px;
    padding: 40px 30px 20px;
    background-color: rgba(212, 175, 55, 0.05);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px 10px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.footer-title {
    font-size: 1.2em;
    color: #f0d674;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-text {
    font-size: 0.95em;
    line-height: 1.8;
    color: #d4af37;
    letter-spacing: 0.3px;
}

.footer-text a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: #f0d674;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.footer-links a:hover {
    color: #f0d674;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-copyright {
    font-size: 0.9em;
    color: #d4af37;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    .language-toggle {
        top: 15px;
        right: 15px;
    }

    .lang-btn {
        padding: 5px 10px;
        font-size: 0.85em;
    }

    .lang-btn .flag {
        font-size: 1.1em;
    }

    .logo-text h1 {
        font-size: 2em;
    }

    .tagline {
        font-size: 1.2em;
    }

    .about-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .about-title {
        font-size: 1.7em;
    }

    .about-text {
        font-size: 1em;
    }

    .top-nav {
        padding: 10px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-list {
        gap: 8px;
        min-width: max-content;
    }

    .nav-list a {
        font-size: 0.8em;
        padding: 6px 10px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 1.4em;
    }

    .service-headline {
        font-size: 1.2em;
    }

    .service-body {
        font-size: 1em;
    }

    .benefits-title {
        font-size: 1.1em;
    }

    .benefits-list li {
        font-size: 1em;
    }

    .service-cta {
        font-size: 1em;
    }

    .header-logo {
        max-width: 250px;
    }

    .footer {
        margin-top: 40px;
        padding: 30px 20px 15px;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-title {
        font-size: 1.1em;
    }

    .footer-text {
        font-size: 0.9em;
    }

    .footer-links a {
        font-size: 0.9em;
    }

    .contact-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-photo {
        margin-bottom: 20px;
    }

    .photo {
        width: 180px;
        height: 180px;
    }

    .contact-logo {
        margin-top: 20px;
    }

    .contact-logo-img {
        max-width: 120px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info h3 {
        font-size: 1.5em;
    }

    .contact-details {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .header-logo {
        max-width: 200px;
    }

    .language-toggle {
        top: 10px;
        right: 10px;
        gap: 4px;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 0.8em;
    }

    .lang-btn .flag {
        font-size: 1em;
    }

    .tagline {
        font-size: 1em;
    }

    .about-section {
        padding: 25px 15px;
        margin-bottom: 30px;
    }

    .about-title {
        font-size: 1.5em;
    }

    .about-text {
        font-size: 0.95em;
    }

    .top-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-list {
        gap: 6px;
        min-width: max-content;
    }

    .nav-list a {
        font-size: 0.75em;
        padding: 6px 8px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-title {
        font-size: 1.3em;
    }

    .service-headline {
        font-size: 1.1em;
    }

    .service-body {
        font-size: 0.95em;
    }

    .benefits-title {
        font-size: 1em;
    }

    .benefits-list li {
        font-size: 0.95em;
        padding-left: 20px;
    }

    .service-cta {
        font-size: 0.95em;
    }

    .photo {
        width: 150px;
        height: 150px;
    }

    .contact-logo-img {
        max-width: 100px;
    }

    .contact-info h3 {
        font-size: 1.3em;
    }

    .footer {
        margin-top: 30px;
        padding: 25px 15px 15px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-title {
        font-size: 1em;
    }

    .footer-text {
        font-size: 0.85em;
    }

    .footer-links a {
        font-size: 0.85em;
    }

    .footer-copyright {
        font-size: 0.8em;
    }
}

