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

body {
    margin: 0;
    padding: 0;
    font-family: 'Heebo', 'Segoe UI', Arial, sans-serif;
    background-color: #f0e3dc;
    color: #333;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center; 
}
  
  .logo {
    font-family: 'Secular One', sans-serif;
    color: #e35336;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    
    line-height: 1; 
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .tagline {
    font-size: 16px;
    color: #666;
    margin-top: 2px; 
  }

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 8px;
}

.nav-links a:hover {
    color: #e35336;
    background-color: #f9f1ed;
}

.contact-btn {
    background-color: #e35336 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(227, 83, 54, 0.3);
    transition: all 0.3s;
}

.contact-btn:hover {
    background-color: #d44326 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 83, 54, 0.4);
}

/* Main content */
.main-content {
    max-width: 1100px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.section {
    margin-bottom: 50px;
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.section h2 {
    color: #e35336;
    font-size: 32px;
    margin-bottom: 25px;
    border-right: 5px solid #e35336;
    padding-right: 15px;
    display: inline-block;
}

.section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.highlight {
    color: #e35336;
    font-weight: bold;
}

/* Service boxes */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-box {
    background-color: #f9f1ed;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.service-box h3 {
    color: #e35336;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e35336;
}

.service-box .price {
    font-size: 36px;
    font-weight: bold;
    color: #e35336;
    text-align: center;
    margin: 20px 0;
}

.service-box .details {
    text-align: center;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Benefits list */
.benefits-list {
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    list-style-type: none;
    padding-right: 35px;
    margin-bottom: 18px;
    position: relative;
    font-size: 18px;
    color: #555;
}

.benefits-list li:before {
    content: "✔";
    color: #e35336;
    font-weight: bold;
    position: absolute;
    right: 0;
    font-size: 20px;
}

/* Contact form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f1ed;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #444;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e35336;
    box-shadow: 0 0 0 3px rgba(227, 83, 54, 0.2);
    outline: none;
}

.submit-btn {
    background-color: #e35336;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(227, 83, 54, 0.3);
}

.submit-btn:hover {
    background-color: #d44326;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 83, 54, 0.4);
}

.form-status {
    margin-top: 20px;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    display: none;
    font-size: 16px;
}

.form-status.success {
    display: block;
    background-color: rgba(75, 181, 67, 0.2);
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

.form-status.error {
    display: block;
    background-color: rgba(244, 67, 54, 0.2);
    color: #c62828;
    border: 1px solid #c62828;
}

/* Contact info */
.contact-info {
    text-align: center;
    padding: 30px;
    font-size: 20px;
    background: linear-gradient(135deg, #e35336, #ff7259);
    color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(227, 83, 54, 0.3);
    margin-top: 40px;
}

/* Footer */
footer {
    background-color: #f9f1ed;
    color: #555;
    padding: 50px 0;
    text-align: center;
    position: relative;
    margin-top: 60px;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #e35336, transparent);
}

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

.footer-logo {
    font-family: 'Secular One', sans-serif;
    color: #e35336;
    font-size: 28px;
    margin-bottom: 15px;
}

/* Burger menu */
.burger-menu {
    display: none;
    cursor: pointer;
}

.burger-icon {
    width: 30px;
    height: 20px;
    position: relative;
}

.burger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #e35336;
    border-radius: 9px;
    opacity: 1;
    right: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.burger-icon span:nth-child(1) {
    top: 0px;
}

.burger-icon span:nth-child(2) {
    top: 9px;
}

.burger-icon span:nth-child(3) {
    top: 18px;
}

.burger-icon.open span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.burger-icon.open span:nth-child(2) {
    opacity: 0;
    right: -60px;
}

.burger-icon.open span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #f1f1f1;
    }

    .burger-menu {
        display: block;
    }

    .section {
        padding: 25px;
    }

    .services-container {
        grid-template-columns: 1fr;
    }
}