/* Reset and base styles */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 127, 128, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-logo h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.nav-logo h2 img {
    margin: 0;
    width: 33px;
    height: 33px;
    padding-right: 5px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-button {
    background: #2c3e50;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
}

.nav-button:hover {
    background: transparent;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #34495e;
    padding-top: 80px; /* Space for fixed navbar */
    background-color: #f8f9fa;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(35, 33, 33, 0.9), rgba(0, 0, 0, 0.6)), 
                url('./images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 1200px;
    text-align: left;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #e04a3a;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
    max-width: 400px;
}

.cta-button {
    display: inline-block;
    background-color: #f39c12;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #f39c12;
}

.cta-button:hover {
    background-color: transparent;
    color: #f39c12;
    border-color: #f39c12;
}

/* Framework section */
.framework-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.framework-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 300;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.framework-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 3px;
    --s: 4px; /* size of the wave */
    --b: 4px; /* thickness of the line */
    --m: 0.4; /* curvature of the wave [0 2] */
    background: #e04a3a;
    --R: calc(var(--s)*sqrt(var(--m)*var(--m) + 1) + var(--b)/2);
    height: calc(2*var(--R));
    --_g: #0000 calc(99% - var(--b)), #000 calc(101% - var(--b)) 99%, #0000 101%;
    mask:
    radial-gradient(var(--R) at left 50% bottom calc(-1*var(--m)*var(--s)), var(--_g)) 
     calc(50% - 2*var(--s)) calc(50% - var(--s)/2 - var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x,
    radial-gradient(var(--R) at left 50% top calc(-1*var(--m)*var(--s)),var(--_g)) 
     50% calc(50% + var(--s)/2 + var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x;
}

.framework-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.framework-title-section {
    flex: 0 0 300px;
}

.framework-grid {
    display: flex;
    gap: 15px;
    flex: 1;
    padding: 10px 0;
    align-items: stretch;
}

.framework-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.framework-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 127, 128, 0.1), transparent);
    transition: left 0.6s ease;
}

.framework-item:hover::before {
    left: 100%;
}

.framework-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 127, 128, 0.15);
    border-color: #2c3e50;
}

.framework-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.framework-item:hover h3 {
    color: #f39c12;
}

.framework-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0;
}

.framework-item:hover p {
    color: #555;
}

/* About section */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 300;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 3px;
    --s: 4px; /* size of the wave */
    --b: 4px; /* thickness of the line */
    --m: 0.4; /* curvature of the wave [0 2] */
    background: #e04a3a;
    --R: calc(var(--s)*sqrt(var(--m)*var(--m) + 1) + var(--b)/2);
    height: calc(2*var(--R));
    --_g: #0000 calc(99% - var(--b)), #000 calc(101% - var(--b)) 99%, #0000 101%;
    mask:
    radial-gradient(var(--R) at left 50% bottom calc(-1*var(--m)*var(--s)), var(--_g)) 
     calc(50% - 2*var(--s)) calc(50% - var(--s)/2 - var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x,
    radial-gradient(var(--R) at left 50% top calc(-1*var(--m)*var(--s)),var(--_g)) 
     50% calc(50% + var(--s)/2 + var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-content p:last-child {
    margin-bottom: 30px;
}

.about-cta {
    margin-top: 30px;
}

.about-cta-button {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
}

.about-cta-button:hover {
    background-color: transparent;
    color: #2c3e50;
    border-color: #2c3e50;
}

.about-image {
    flex: 0 0 400px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Challenges section */
.challenges-section {
    padding: 80px 0;
    background-color: #2c3e50;
    text-align: center;
}

.challenges-section h2 {
    font-size: 2.5rem;
    color: #f39c12;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.challenges-section h3 {
    font-size: 1.8rem;
    color: #7198bf;
    font-weight: 300;
    margin-bottom: 60px;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.challenge-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: left;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.challenge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245, 93, 75, 0.1);
    border-color: #f39c12;
}

.challenge-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.4;
}

.challenge-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.challenge-item li {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.challenge-item li::before {
    content: '•';
    color: #f39c12;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Cost section */
.cost-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cost-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cost-content {
    flex: 1;
}

.cost-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 300;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.cost-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 3px;
    --s: 4px; /* size of the wave */
    --b: 4px; /* thickness of the line */
    --m: 0.4; /* curvature of the wave [0 2] */
    background: #e04a3a;
    --R: calc(var(--s)*sqrt(var(--m)*var(--m) + 1) + var(--b)/2);
    height: calc(2*var(--R));
    --_g: #0000 calc(99% - var(--b)), #000 calc(101% - var(--b)) 99%, #0000 101%;
    mask:
    radial-gradient(var(--R) at left 50% bottom calc(-1*var(--m)*var(--s)), var(--_g)) 
     calc(50% - 2*var(--s)) calc(50% - var(--s)/2 - var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x,
    radial-gradient(var(--R) at left 50% top calc(-1*var(--m)*var(--s)),var(--_g)) 
     50% calc(50% + var(--s)/2 + var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x;
}

.cost-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cost-content li {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.cost-content li::before {
    content: '✗';
    color: #f39c12;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.stat-box {
    flex: 0 0 350px;
    background: linear-gradient(135deg, #2c3e50 0%, #005f5f 100%);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 127, 128, 0.2);
}

.stat-box p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

/* Reality section */
.reality-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.reality-header {
    text-align: left;
    margin-bottom: 60px;
}

.reality-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 300;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.reality-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 3px;
    --s: 4px; /* size of the wave */
    --b: 4px; /* thickness of the line */
    --m: 0.4; /* curvature of the wave [0 2] */
    background: #e04a3a;
    --R: calc(var(--s)*sqrt(var(--m)*var(--m) + 1) + var(--b)/2);
    height: calc(2*var(--R));
    --_g: #0000 calc(99% - var(--b)), #000 calc(101% - var(--b)) 99%, #0000 101%;
    mask:
    radial-gradient(var(--R) at left 50% bottom calc(-1*var(--m)*var(--s)), var(--_g)) 
     calc(50% - 2*var(--s)) calc(50% - var(--s)/2 - var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x,
    radial-gradient(var(--R) at left 50% top calc(-1*var(--m)*var(--s)),var(--_g)) 
     50% calc(50% + var(--s)/2 + var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x;
}

.reality-header p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.stat-image {
    height: 200px;
    overflow: hidden;
}

.stat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-image img {
    transform: scale(1.05);
}

.stat-content {
    padding: 30px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 15px;
}

.stat-text {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
}

.stat-source {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* CTA section */
.cta-section {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

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

.cta-section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-section-button {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
}

.cta-section-button:hover {
    background-color: transparent;
    color: #2c3e50;
    border-color: #2c3e50;
}

/* Testimonial section */
.testimonial-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f39c12 0%, #e04a3a 100%);
    text-align: center;
    color: white;
}

.testimonial-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-content {
    flex: 1;
    text-align: left;
}

.testimonial-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: white;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-quote {
    flex: 0 0 400px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    border: 4px solid white;
    backdrop-filter: blur(10px);
    text-align: left;
}

.testimonial-quote p {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
    color: white;
    line-height: 1.6;
}

/* Testimonial section 2 */
.testimonial-section-2 {
    padding: 40px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #005f5f 100%);
    text-align: center;
    color: white;
}

.testimonial-section-2 .testimonial-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-section-2 .testimonial-content {
    flex: 1;
    text-align: left;
}

.testimonial-section-2 .testimonial-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: white;
}

.testimonial-section-2 .testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-section-2 .testimonial-quote {
    flex: 0 0 400px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    border: 4px solid white;
    backdrop-filter: blur(10px);
    text-align: left;
}

.testimonial-section-2 .testimonial-quote p {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
    color: white;
    line-height: 1.6;
}

/* Clients section */
.clients-section {
    padding: 80px 0;
    background-color: white;
}

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

.clients-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 300;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}
.clients-section h2{
    text-align: left;
}
.clients-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 3px;
    --s: 4px; /* size of the wave */
    --b: 4px; /* thickness of the line */
    --m: 0.4; /* curvature of the wave [0 2] */
    background: #e04a3a;
    --R: calc(var(--s)*sqrt(var(--m)*var(--m) + 1) + var(--b)/2);
    height: calc(2*var(--R));
    --_g: #0000 calc(99% - var(--b)), #000 calc(101% - var(--b)) 99%, #0000 101%;
    mask:
    radial-gradient(var(--R) at left 50% bottom calc(-1*var(--m)*var(--s)), var(--_g)) 
     calc(50% - 2*var(--s)) calc(50% - var(--s)/2 - var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x,
    radial-gradient(var(--R) at left 50% top calc(-1*var(--m)*var(--s)),var(--_g)) 
     50% calc(50% + var(--s)/2 + var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.client-testimonial {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.client-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 127, 128, 0.1);
    border-color: #2c3e50;
}

.client-logo {
    margin-bottom: 20px;
}

.logo-placeholder img{
    width: 100px;
}

.testimonial-text {
    margin-bottom: 25px;
}

.testimonial-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.client-info {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.client-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 5px;
}

.client-title {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ section */
.faq-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 300;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}
.faq-section h2{
    text-align: left;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 3px;
    --s: 4px; /* size of the wave */
    --b: 4px; /* thickness of the line */
    --m: 0.4; /* curvature of the wave [0 2] */
    background: #e04a3a;
    --R: calc(var(--s)*sqrt(var(--m)*var(--m) + 1) + var(--b)/2);
    height: calc(2*var(--R));
    --_g: #0000 calc(99% - var(--b)), #000 calc(101% - var(--b)) 99%, #0000 101%;
    mask:
    radial-gradient(var(--R) at left 50% bottom calc(-1*var(--m)*var(--s)), var(--_g)) 
     calc(50% - 2*var(--s)) calc(50% - var(--s)/2 - var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x,
    radial-gradient(var(--R) at left 50% top calc(-1*var(--m)*var(--s)),var(--_g)) 
     50% calc(50% + var(--s)/2 + var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 127, 128, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #34495e;
    font-weight: 500;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact section */
.contact-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #005f5f 100%);
    text-align: center;
    color: white;
}

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

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 300;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-button {
    display: inline-block;
    background-color: #f39c12;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #f39c12;
}

.contact-button:hover {
    background-color: transparent;
    color: #f39c12;
    border-color: #f39c12;
}

/* Responsive design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo h2 {
        font-size: 1.6rem;
    }
    
    .nav-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo h2 {
        font-size: 1.4rem;
    }
    
    .nav-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    body {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    /* About page responsive */
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .mission-container {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-image {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .experience-container {
        flex-direction: column;
        text-align: center;
    }
    
    .experience-stats {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .framework-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .framework-title-section {
        flex: none;
        text-align: center;
    }
    
    .framework-section h2 {
        font-size: 2rem;
    }
    
    .framework-grid {
        flex-direction: column;
        gap: 20px;
        overflow-x: visible;
    }
    
    .framework-item {
        padding: 25px;
        min-width: auto;
    }
    
    .about-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .about-image {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .challenges-section h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .challenges-section h3 {
        font-size: 1.5rem;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .challenge-item {
        padding: 30px 25px;
    }
    
    .cost-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .stat-box {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cost-content h2 {
        font-size: 2rem;
    }
    
    .reality-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .testimonial-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .testimonial-content {
        text-align: center;
    }
    
    .testimonial-content h2 {
        font-size: 2rem;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
    }
    
    .testimonial-quote {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 30px;
        text-align: center;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
    }
    
    .testimonial-section-2 .testimonial-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .testimonial-section-2 .testimonial-content {
        text-align: center;
    }
    
    .testimonial-section-2 .testimonial-content h2 {
        font-size: 2rem;
    }
    
    .testimonial-section-2 .testimonial-content p {
        font-size: 1.1rem;
    }
    
    .testimonial-section-2 .testimonial-quote {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 30px;
        text-align: center;
    }
    
    .testimonial-section-2 .testimonial-quote p {
        font-size: 1rem;
    }
    
    .clients-section h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .client-testimonial {
        padding: 25px;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 25px 20px 25px;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.6)), 
                url('./images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px 0;
    text-align: center;
    color: white;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.about-hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

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

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 300;
    margin-bottom: 30px;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.mission-image {
    flex: 0 0 500px;
}

.mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.values-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 300;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.value-icon .icon {
    font-size: 2.5rem;
    color: white;
}

.value-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 500;
}

.value-item p {
    color: #34495e;
    line-height: 1.6;
}

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

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

.team-container h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 300;
    margin-bottom: 20px;
}

.team-container > p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.team-member {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 500;
}

.member-title {
    color: #f39c12;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-info p:last-child {
    color: #34495e;
    line-height: 1.6;
    font-size: 0.95rem;
}

.experience-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.experience-content {
    flex: 1;
}

.experience-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 300;
    margin-bottom: 30px;
}

.experience-content p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 30px;
    line-height: 1.8;
}

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-list li {
    padding: 10px 0;
    color: #34495e;
    position: relative;
    padding-left: 25px;
}

.experience-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
    font-size: 1.2rem;
}

.experience-stats {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-label {
    color: #34495e;
    font-size: 1rem;
    font-weight: 500;
}

.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
    color: white;
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-cta-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.about-cta-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-cta-button {
    display: inline-block;
    background-color: #f39c12;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #f39c12;
}

.about-cta-button:hover {
    background-color: transparent;
    color: #f39c12;
    border-color: #f39c12;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.2);
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.6)), 
                url('./images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px 0;
    text-align: center;
    color: white;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.contact-hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-content {
    flex: 2;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 300;
    margin-bottom: 15px;
}

.contact-form-content > p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #34495e;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.submit-button {
    background: #f39c12;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.contact-info {
    flex: 1;
    background: #2c3e50;
    color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #f39c12;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
    color: white;
}

.contact-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-cta-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-cta-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.6)), 
                url('./images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px 0;
    text-align: center;
    color: white;
}

.legal-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.legal-hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

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

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

.legal-text {
    line-height: 1.8;
    color: #34495e;
}

.last-updated {
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ecf0f1;
}

.legal-text h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 500;
    margin: 40px 0 20px 0;
    padding-top: 20px;
}

.legal-text h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

.legal-text p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.legal-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 10px;
    position: relative;
}

.legal-text li::marker {
    color: #f39c12;
}

.legal-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
    color: white;
}

.legal-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-cta-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.legal-cta-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #f3f3ea;
    color: white;
    padding: 50px 0 20px 0;
}

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

.footer-content {
    text-align: left;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: #f39c12;
    margin-bottom: 15px;
    font-weight: 300;
}

.footer-brand p {
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #34495e;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.footer-nav a:hover {
    color: #f39c12;
}

.contact-details p {
    color: #f39c12;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 600;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    font-weight: 600;
}

.footer-bottom p {
    color: #34495e;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-nav {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav a {
        font-size: 0.9rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    /* Contact page responsive */
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-form-content {
        padding: 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    /* Legal pages responsive */
    .legal-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .legal-hero-content p {
        font-size: 1.1rem;
    }
    
    .legal-text h2 {
        font-size: 1.5rem;
    }
    
    .legal-cta-container h2 {
        font-size: 2rem;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 40px 0;
    color: white;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.newsletter-container h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #f39c12;
}

.newsletter-container p {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #ecf0f1;
    line-height: 1.6;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f39c12;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7f8c8d;
}

.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    color: #f39c12;
    font-size: 14px;
    cursor: pointer;
}

.newsletter-button {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
}

.newsletter-button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-container h2 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .newsletter-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}