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

body {
    font-family: 'Montserrat', sans-serif;
    color: #4a4a4a;
    line-height: 1.6;
    background: #fdfcfb;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdfcfb 0%, #f5f3f0 100%);
    padding: 6rem 2rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(210, 180, 140, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(210, 180, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.content {
    padding: 2rem;
}

.subtitle {
    color: #c19a5d;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    color: #d4a574;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.feature-title {
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 0.3rem;
}

.feature-text {
    font-size: 0.9rem;
    color: #888;
}

.form-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3.5rem 2.5rem 2.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.form-title {
    font-size: 2rem;
    color: #d4a574;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: #888;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #d4a574 0%, #c19a5d 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
}

.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e8e8e8;
}

.divider-text {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 0 1rem;
    color: #999;
    font-size: 0.9rem;
}

.calendar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    color: #d4a574;
    border: 2px solid #d4a574;
}

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

.success-message {
    background: #d4f4dd;
    color: #2d5016;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
}

.demo-link {
    text-align: center;
    margin-top: 1.5rem;
}

.demo-link a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.demo-link a:hover {
    color: #c19a5d;
    text-decoration: underline;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #4a4a4a;
    line-height: 1.6;
    background: #fdfcfb;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdfcfb 0%, #f5f3f0 100%);
    padding: 6rem 2rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(210, 180, 140, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(210, 180, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.content {
    padding: 2rem;
}

.subtitle {
    color: #c19a5d;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    color: #d4a574;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.feature-title {
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 0.3rem;
}

.feature-text {
    font-size: 0.9rem;
    color: #888;
}

.form-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3.5rem 2.5rem 2.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.form-title {
    font-size: 2rem;
    color: #d4a574;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: #888;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #d4a574 0%, #c19a5d 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
}

.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e8e8e8;
}

.divider-text {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 0 1rem;
    color: #999;
    font-size: 0.9rem;
}

.calendar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    color: #d4a574;
    border: 2px solid #d4a574;
}

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

.success-message {
    background: #d4f4dd;
    color: #2d5016;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
}

.demo-link {
    text-align: center;
    margin-top: 1.5rem;
}

.demo-link a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.demo-link a:hover {
    color: #c19a5d;
    text-decoration: underline;
}

@media (max-width: 968px) {
    .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 5rem 1.5rem 2rem 1.5rem;
    }

    .form-section {
        padding: 3rem 1.5rem 2rem 1.5rem;
    }
}

/* Navigation styles */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c19a5d;
    text-decoration: none;
}

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

.nav-menu li a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #c19a5d;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #c19a5d;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile responsive navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        list-style: none;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .nav-container {
        padding: 0 1rem;
        position: relative;
    }

    .top-nav {
        padding: 0.75rem 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .article-container {
        max-width: 100%;
        margin: 100px 1rem 40px 1rem;
        padding: 1.5rem;
        border-radius: 10px;
    }

    .article-container h1 {
        font-size: 2rem;
    }

    .article-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-cta {
        width: 100%;
    }
}

/* New styles for article layout */
.article-container {
    max-width: 900px;
    margin: 120px auto 40px auto; /* Increased top margin to account for fixed nav */
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-container h1 {
    color: #c19a5d;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.article-subtitle {
    color: #666;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
}

.article-section {
    margin: 3rem 0;
    padding: 0;
    background: #fff;
    animation: fadeInUp 0.6s ease-in-out;
}

.article-section:nth-child(even) {
    background: #faf8f5;
    padding: 1.5rem;
    border-radius: 10px;
}

.article-section h2 {
    color: #c19a5d;
    font-size: 2rem;
    margin: 1.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8dcc8;
}

.article-section h3 {
    color: #333;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.article-section p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: left;
    max-width: 700px;
}

.article-section ul {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.article-section li {
    margin-bottom: 0.8rem;
}

.service-card {
    background: #f9f7f2;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #c19a5d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h4 {
    color: #c19a5d;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.service-card h4::before {
    content: "• ";
    color: #c19a5d;
}

.service-card p {
    color: #666;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-section p {
    color: #333;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #d4a574 0%, #c19a5d 100%);
    color: white;
    border: none;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193,154,93,0.35);
}

.btn-secondary-cta {
    background: transparent;
    border: 2px solid #c19a5d;
    color: #c19a5d;
}

.btn-secondary-cta:hover {
    background: #c19a5d;
    color: white;
    box-shadow: 0 8px 20px rgba(193,154,93,0.35);
}

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

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

.back-link {
    margin-top: 2rem;
    text-align: center;
}

.back-link a {
    color: #c19a5d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.back-link a:hover {
    text-decoration: underline;
    color: #a87f4a;
}

.faq-item {
    margin-bottom: 1rem;
    cursor: pointer;
}

.faq-question {
    font-weight: 600;
    color: #c19a5d;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e8dcc8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0.5rem 0 1rem 0;
    display: none;
}

.faq-answer.show {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


