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

body {
    font-family: 'Bitter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.7;
    color: #2a2c2c;
    background-color: #f1f1f1;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bitter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: #171717;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

p {
    margin-bottom: 1rem;
}

a {
    color: #811616;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5a0f0f;
}

.main-header {
    background-color: rgba(237, 236, 232, 1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: nowrap;
    gap: 3rem;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    font-family: 'Bitter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    color: #811616;
    font-weight: 700;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu li {
    white-space: nowrap;
}

.language-switcher {
    margin-left: 1rem;
    border-left: 1px solid #ddd;
    padding-left: 1rem;
}

.language-switcher a {
    background-color: #f9f9f9 !important;
}

.language-switcher a:hover {
    background-color: #811616 !important;
    color: white !important;
}


.nav-menu a {
    font-family: 'Bitter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: #811616;
    font-size: 15px;
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.nav-menu a:hover {
    background-color: #811616;
    color: white;
}

.nav-menu a.active {
    background-color: #811616;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

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

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-services {
    margin-bottom: 2rem;
}

.hero-services p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 100px;
    border: 2px solid #171717;
    background-color: white;
    color: #2a2c2c;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #171717;
    color: white;
}

.btn-primary {
    background-color: #811616;
    border-color: #811616;
    color: white;
}

.btn-primary:hover {
    background-color: #5a0f0f;
    border-color: #5a0f0f;
}

.section {
    padding: 80px 0;
    background-color: white;
}

.section:nth-child(even) {
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.title-line {
    width: 80px;
    height: 2px;
    background-color: #811616;
    margin: 1rem auto;
}

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

.about-text.full-width {
    text-align: center;
}

blockquote {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #811616;
    font-style: italic;
}

blockquote cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-style: normal;
    color: #811616;
}

.service-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.service-item h3 {
    color: #811616;
    margin-bottom: 1rem;
}

.service-item p {
    margin-bottom: 0.5rem;
}

.service-item em {
    color: #666;
}

.inspiration-quote {
    margin: 3rem 0;
    text-align: center;
    font-size: 1.2rem;
}

.pricing-section {
    background-color: #f9f9f9;
}

.price-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.price-category {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-category h4 {
    color: #811616;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.price-category .subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.price-category table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.price-category table tr {
    border-bottom: 1px solid #eee;
}

.price-category table td {
    padding: 0.75rem 0.5rem;
}

.price-category table td:first-child {
    padding-left: 0;
    word-wrap: break-word;
}

.price-category table td.price {
    text-align: right;
    font-weight: bold;
    color: #2a2c2c;
    white-space: nowrap;
    padding-right: 0;
    width: 30%;
}

.price-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 2rem;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-main-info,
.contact-location-info {
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 10px;
}

.contact-main-info h3 {
    color: #811616;
    margin-bottom: 0.5rem;
}

.contact-main-info .subtitle,
.contact-location-info .subtitle {
    color: #ada5a5;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: #811616;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #2a2c2c;
    font-weight: bold;
    text-decoration: none;
}

.contact-item a:hover {
    color: #811616;
    text-decoration: underline;
}

.contact-item small {
    color: #ada5a5;
}

.additional-info {
    text-align: center;
    padding: 3rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.additional-info h3 {
    color: #811616;
    margin-bottom: 0.5rem;
}

.additional-info .subtitle {
    color: #666;
    margin-bottom: 1rem;
}

.additional-info ul {
    list-style: none;
    padding: 0;
}

.additional-info ul li {
    padding: 0.5rem 0;
}

.main-footer {
    background-color: #2a2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.25rem 0;
}

.footer-section a {
    color: #ccc;
}

.footer-section a:hover {
    color: white;
}

.footer-note {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    margin: 2rem 0 1rem;
    font-style: italic;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    color: #787878;
    font-size: 0.9rem;
}

.footer-bottom .lang-link {
    color: #ccc;
    text-decoration: none;
    margin-left: 0.5rem;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-bottom .lang-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

@media (max-width: 1024px) {
    .main-nav {
        gap: 2rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-menu a {
        font-size: 14px;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(237, 236, 232, 0.95);
        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;
    }
    
    .language-switcher {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
        margin-top: 1rem;
    }
    
    .contact-content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-wrapper {
        order: 2;
    }
    
    .contact-map {
        order: 1;
        margin-bottom: 2rem;
        min-height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-section {
        height: 70vh;
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .section {
        padding: 60px 0;
    }
}