body {
    font-family: 'Inter', sans-serif;
    background-color: #FDF7F0;
    color: #333333;
}

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

.bg-orange-light {
    background-color: #FDF7F0;
}

.text-orange-dark {
    color: #E97444;
}

.bg-orange-button {
    background-color: #E97444;
}

.bg-orange-button:hover {
    background-color: #D4663B;
}

.text-dark-brown {
    color: #4A2C2A;
}

.header-bg {
    background-color: #FDF7F0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-link {
    color: #555555;
    font-weight: 500;
}

.nav-link:hover {
    color: #E97444;
}

/* Accordion Style Layout */
.accordion-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 0;
}

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

.section-divider h2 {
    display: inline-block;
    background: #FDF7F0;
    padding: 0 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A2C2A;
    position: relative;
    z-index: 2;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E97444, transparent);
    z-index: 1;
}

.accordion-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(233, 116, 68, 0.08);
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active,
.accordion-item:hover {
    border-color: #E97444;
    box-shadow: 0 8px 40px rgba(233, 116, 68, 0.15);
    transform: translateY(-2px);
}

.accordion-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(233, 116, 68, 0.02);
}

.accordion-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E97444, #F39C12);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 6px 20px rgba(233, 116, 68, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon,
.accordion-item:hover .accordion-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(233, 116, 68, 0.4);
}

.accordion-title-area {
    flex: 1;
}

.accordion-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4A2C2A;
    margin-bottom: 0.5rem;
}

.accordion-subtitle {
    color: black;
    font-size: 1rem;
    line-height: 1.5;
}

.accordion-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(233, 116, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-toggle i {
    color: #E97444;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.accordion-item.active .accordion-toggle {
    background: #E97444;
    transform: rotate(180deg);
}

.accordion-item.active .accordion-toggle i {
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-body {
    padding: 0 2rem 2rem 2rem;
    border-top: 1px solid rgba(233, 116, 68, 0.1);
}

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

.feature-card {
    background: rgba(233, 116, 68, 0.02);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #E97444;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(233, 116, 68, 0.05);
    transform: translateX(8px);
}

.feature-card h4 {
    font-weight: 600;
    color: #4A2C2A;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-card h4 i {
    color: #E97444;
}

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

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 0;
    color: #E97444;
    font-weight: bold;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-list li {
    color: #333;
}

.feature-card:hover .feature-list li::before {
    transform: translateX(4px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #FDF7F0 0%, #F8F3ED 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 116, 68, 0.1), transparent);
    animation: float 6s ease-in-out infinite;
}

.hero-decoration:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-decoration:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.hero-decoration:nth-child(3) {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #4A2C2A;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #E97444;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 1.1rem;
    color: black;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .accordion-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .accordion-title-area {
        text-align: center;
    }

    .accordion-body {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

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

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

    .accordion-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}