/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

/*.divi {
  text-align: center;
  max-width: 1200px;

}*/

hr.dashed {
  border: 1px dashed #e1e1e1;
}

/* Color Variables */
:root {
    --primary-color: #968559;
    --primary-light: #c2bba7;
    --primary-dark: #5d4d36;
    --accent-color: #e74c3c;
    --accent-hover: #c0392b;
    --text-dark: #5d4d36;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 800;
}

h3 {
    font-size: 1.5rem;
}

p {
    line-height: 1.6;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e7e2d5 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chatbot-illustration {
    position: relative;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chat-bubble {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    position: relative;
}

.chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-color);
}

.bot-icon {
    font-size: 3rem;
    text-align: center;
}

/* SECTIONS */
section {
    padding: 80px 0;
}

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

/* REASONS SECTION - MENGAPA PILIH ARTHANA */
.reasons {
    background-color: #fff;
}

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

.reasons h2 {
    color: #5d4d36;
    margin-bottom: 3rem;
}


.reason-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);

}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reason-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}




/* FITUR SECTIONS - FITUR APA SAJA DI ARTHANA */

.features h2 {
    color: #5d4d36;
    margin-bottom: 1rem;
}

.features {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--gray-50), rgba(216, 203, 226, 0.2));
}

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

.feature-card {
/*    background: var(--primary-light); */
    background: linear-gradient(135deg, #968559 0%, #877a55 100%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color:  #fff;
}

.feature-description {
    line-height: 1.6;
    color:  #fff;
}





/* SOLUSI DARI ARTHANA */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 2rem;
}

.solution-item {
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.solution-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.solution-item h2 {
    color: #5d4d36;
    margin-bottom: 1rem;
}


.solution-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}






/* PRICING OVERVIEW SECTIONS */
.pricing-preview {
    background-color: #e5e1d7;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
}

.pricing-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}





/* ABOUT PREVIEW - SEKILAS ARTHANA */
.about {
    padding: 25px 0 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e7e2d5 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about h2 {
    text-align: left;
    color: #5d4d36;
    margin-bottom: 2rem;
}




/* PAGE HERO - HEADER UNTUK PAGE LAINNYA */
.page-hero {
    padding: 150px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.about-inside {
    padding: 80px 0;
}

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

.about-inside-text h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-inside-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: justify;
}



/* CONTACT FORM */
.contact-form-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h2 {
    color: #5d4d36;
    margin-bottom: 1rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}



/* PRICING PAGE - Pricing Plans */
.pricing-plans {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.features-list li:last-child {
    border-bottom: none;
}

/* PRICING PAGE - Features Detail */
.features-detail {
    background-color: var(--bg-light);
    padding: 80px 0;
}

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

.feature-category {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-category h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    padding: 1rem;
    border-left: 4px solid var(--primary-color);
    background-color: var(--bg-light);
    border-radius: 0 8px 8px 0;
}

.feature-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* PRICING PAGE - Billing Info */
.billing-info {
    padding: 80px 0;
}

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

.billing-item {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.billing-item:hover {
    border-color: var(--primary-color);
}

.billing-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* PRICING PAGE - Enterprise Section */
.enterprise-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.enterprise-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.enterprise-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.enterprise-content ul {
    text-align: left;
    margin: 2rem 0;
    list-style: none;
}

.enterprise-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.enterprise-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* PRICING PAGE - Final CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #e5e1d7;
    color: var(--white);
}

.final-cta h2 {
    margin-bottom: 1rem;
}

.final-cta p {
    margin-bottom: 2rem;
}

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


/* FOOTER */
.footer {
    background-color: #4e4223;
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-brand h3 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

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

.footer a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
}









/* SEMINAR PAGE Hero */
.seminar-hero {
    position: relative; /* Tambahkan ini */
    padding: 120px 0 80px;
/*    background-color: rgba(150, 133, 89, 0.5); */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}


.seminar-hero::before {
      content: "";
      position: absolute;
      background-position: center;
      background-size: cover;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-image: url('../images/seminar-hero-image.jpg');
      background-position: center;
      opacity: 0.2;
      z-index: 0;
}

.seminar-hero > * {
    position: relative;
    z-index: 1;
}

.seminar-hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.event-label {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.event-type {
    background-color: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-date {
    background-color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.seminar-hero h1 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2.8rem;
}

.event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.detail-icon {
    font-size: 2rem;
}

.detail-info {
    text-align: left;
}

.detail-info strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.detail-info span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 3rem;
}

.limited-seats {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--warning-color);
    font-weight: 600;
}

/* SEMINAR PAGE - Event Info Section */
.event-info {
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.info-content h2 {
    color: #5d4d36;
    margin-bottom: 2rem;
}

.info-content > p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    font-size: 0.95rem;
}

/* SEMINAR PAGE - Speakers Section */
.speakers-section {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    position: sticky;
    top: 100px;
}

.speakers-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.speakers {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.speaker-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.speaker-avatar {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.speaker-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.speaker-info h4 {
    color: var(--text-dark);
    margin-top: 0.5rem;
}

.speaker-title {
    color: var(--primary-color);
    font-weight: 500;
}

.speaker-desc {
    font-size: 0.9rem;
    line-height: 1;
}

/* SEMINAR PAGE - Target Audience */
.target-audience {
/*    background-color: var(--bg-light); */
    padding: 25px 0;
}

.target-audience h2 {
    text-align: left;
    color: #5d4d36;
    margin-bottom: 2rem;
}

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

.criteria-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.criteria-item:hover {
    transform: translateY(-5px);
}

.criteria-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.criteria-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* SEMINAR PAGE - Agenda Section */
.agenda-section {
    padding: 80px 0;
}

.agenda-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.agenda-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.agenda-timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.agenda-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.agenda-item::before {
    content: '';
    position: absolute;
    left: 119px;
    top: 10px;
    width: 4px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transform: scale(2);
}

.agenda-time {
    width: 100px;
    font-weight: 600;
    color: var(--primary-color);
    flex-shrink: 0;
}

.agenda-content {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    flex: 1;
}

.agenda-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.agenda-content p {
    font-size: 0.95rem;
}

/* SEMINAR PAGE - Registration Section */
.registration-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.registration-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.registration-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.registration-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.registration-intro p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.price-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* SEMINAR PAGE - Registration Form */
.registration-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--accent-color);
    background-color: rgba(231, 76, 60, 0.05);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 2rem 0;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox label {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.form-notes {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.form-notes p {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-notes ol {
    color: var(--text-light);
    padding-left: 1.5rem;
}

.form-notes li {
    margin-bottom: 0.5rem;
}







/* RESPONSIVE DESIGN ADJUSTMENT */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about h2 {
        text-align: center;
        color: #5d4d36;
        margin-bottom: 2rem;
    }

    .reasons-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }


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

    
    .pricing-cards,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    

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



    .pricing-card.featured {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-table {
        grid-template-columns: 1fr;
    }
    
    .billing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .page-hero {
        padding: 100px 0 40px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .pricing-card,
    .reason-card,
    .solution-item {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}


.responsive {
  max-width: 100%;
  height: auto;


