/* CSS Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Özel CSS Değişkenleri */
:root {
    --ocean-blue: #5e548e;
    --soft-lavender: #eeecf4;
    --deep-purple: #433b64;
    --secondary-color: #9b59b6;
    --secondary-light: #e8d5f2;
    --tertiary-color: #f39c12;
    --tertiary-light: #fef3e2;
    --accent-color: #e74c3c;
    --accent-light: #fdeaea;
    --neutral-color: #95a5a6;
    --neutral-light: #f8f9fa;
    --info-color: #3498db;
    --warning-color: #e67e22;
    --success-color: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --shadow-light: rgba(94, 84, 142, 0.1);
    --shadow-medium: rgba(94, 84, 142, 0.2);
    --shadow-strong: rgba(94, 84, 142, 0.3);
}

/* Tipografi */
body {
    font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 16px;
    background: var(--soft-lavender);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 13px;
    color: var(--deep-purple);
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.7rem; }
h3 { font-size: 2.1rem; }
h4 { font-size: 1.6rem; }

p {
    margin-bottom: 21px;
    color: var(--text-light);
}

/* Container System */
.content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 34px;
}

/* Header Navigation */
.navigation-wrapper {
    background: rgba(238, 236, 244, 0.95);
    backdrop-filter: blur(13px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 7px 21px var(--shadow-light);
    border-bottom: 2px solid var(--ocean-blue);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 0;
    position: relative;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 13px;
}

.brand-logo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 8px 21px var(--shadow-medium);
}

.brand-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ocean-blue);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 34px;
    height: 3px;
    background: var(--ocean-blue);
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 3px;
    background: var(--ocean-blue);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger:before {
    top: -10px;
}

.hamburger:after {
    top: 10px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 21px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 34px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--deep-purple);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--ocean-blue);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 21px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--soft-lavender);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        padding-top: 110px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 34px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: inline-block;
        padding: 13px 21px;
        font-size: 20px;
        color: var(--deep-purple);
        border-radius: 13px;
        background: rgba(94, 84, 142, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: var(--ocean-blue);
        color: white;
        transform: scale(1.05);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.hero-banner {
    padding: 155px 0 89px;
    background: linear-gradient(135deg, var(--soft-lavender) 0%, rgba(238, 236, 244, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(94, 84, 142, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 21px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--deep-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 34px;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    padding: 18px 34px;
    border-radius: 34px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: linear-gradient(135deg, var(--ocean-blue), var(--secondary-color));
    color: white;
    box-shadow: 0 13px 34px var(--shadow-medium);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 21px 55px var(--shadow-strong);
}

.secondary-btn {
    background: transparent;
    color: var(--ocean-blue);
    border: 3px solid var(--ocean-blue);
}

.secondary-btn:hover {
    background: var(--ocean-blue);
    color: white;
    transform: translateY(-3px);
}

.hero-image img {
    width: 100%;
    border-radius: 21px;
    box-shadow: 0 21px 55px var(--shadow-medium);
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: scale(1.02) rotate(1deg);
}

/* Sections */
.features-area, .programs-area, .contact-area {
    padding: 89px 0;
}

.cta-area {
    padding: 110px 0;
    background: linear-gradient(135deg, var(--ocean-blue), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-area::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-header h2 {
    margin-bottom: 21px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px;
}

.feature-card {
    background: white;
    padding: 34px;
    border-radius: 21px;
    text-align: center;
    box-shadow: 0 13px 34px var(--shadow-light);
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ocean-blue), var(--secondary-color));
    transition: left 0.4s ease;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 21px 55px var(--shadow-medium);
    border-color: var(--ocean-blue);
}

.feature-icon {
    width: 89px;
    height: 89px;
    margin: 0 auto 21px;
    background: linear-gradient(135deg, var(--soft-lavender), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 21px var(--shadow-light);
}

.feature-icon img {
    width: 34px;
    height: 34px;
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(240deg);
}

.feature-card h3 {
    margin-bottom: 13px;
    color: var(--ocean-blue);
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 34px;
}

.program-card {
    background: white;
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 13px 34px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid transparent;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px var(--shadow-medium);
    border-color: var(--ocean-blue);
}

.program-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.program-card:hover img {
    transform: scale(1.05);
}

.program-content {
    padding: 34px;
}

.program-content h3 {
    color: var(--ocean-blue);
    margin-bottom: 13px;
}

.program-content ul {
    list-style: none;
    margin: 21px 0;
}

.program-content ul li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 21px;
}

.program-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.program-btn {
    display: inline-block;
    padding: 13px 21px;
    background: var(--ocean-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.program-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 890px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 21px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 34px;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 21px;
    margin: 34px 0;
}

.cta-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: white;
    font-weight: 500;
}

.cta-feature img {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
}

.cta-btn {
    display: inline-block;
    padding: 21px 55px;
    background: white;
    color: var(--ocean-blue);
    text-decoration: none;
    border-radius: 34px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.contact-item {
    display: flex;
    gap: 21px;
    align-items: center;
    padding: 21px;
    background: white;
    border-radius: 13px;
    box-shadow: 0 8px 21px var(--shadow-light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--ocean-blue);
    transform: translateX(8px);
}

.contact-item img {
    width: 34px;
    height: 34px;
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(240deg);
}

.contact-item h4 {
    color: var(--ocean-blue);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 34px;
    border-radius: 21px;
    box-shadow: 0 13px 34px var(--shadow-light);
    border: 3px solid var(--ocean-blue);
}

.form-group {
    margin-bottom: 21px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--ocean-blue);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px;
    border: 2px solid var(--neutral-light);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--neutral-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(94, 84, 142, 0.1);
    background: white;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 13px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 21px var(--shadow-medium);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px var(--shadow-strong);
}

/* Footer */
.footer-area {
    background: var(--deep-purple);
    color: white;
    padding: 55px 0 21px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 34px;
    margin-bottom: 34px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 21px;
}

.footer-logo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    color: white;
    margin-bottom: 21px;
    border-bottom: 2px solid var(--ocean-blue);
    padding-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 8px;
}

.footer-contact p {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 13px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--ocean-blue);
    transform: translateY(-3px);
}

.social-links img {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 21px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1280px) {
    .content-container {
        padding: 0 21px;
    }
}

@media (max-width: 890px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 34px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .features-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .content-container {
        padding: 0 13px;
    }

    .hero-banner {
        padding: 134px 0 55px;
    }

    .features-area,
    .programs-area,
    .contact-area {
        padding: 55px 0;
    }

    .cta-area {
        padding: 55px 0;
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: 13px;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-icon {
    animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 1.5s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 2s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 2.5s; }

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--ocean-blue);
    color: white;
}

/* Focus Styles */
:focus {
    outline: 2px solid var(--ocean-blue);
    outline-offset: 2px;
}

/* About Page Specific Styles */
.about-hero-banner {
    padding: 155px 0 89px;
    background: linear-gradient(135deg, var(--soft-lavender) 0%, rgba(238, 236, 244, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(94, 84, 142, 0.08) 0%, transparent 65%);
    border-radius: 50%;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 21px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 21px;
    margin-top: 34px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 13px;
    background: white;
    padding: 21px;
    border-radius: 13px;
    box-shadow: 0 8px 21px var(--shadow-light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--ocean-blue);
    transform: translateY(-5px);
}

.stat-item img {
    width: 34px;
    height: 34px;
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(240deg);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ocean-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-hero-image img {
    width: 100%;
    border-radius: 21px;
    box-shadow: 0 21px 55px var(--shadow-medium);
    transition: transform 0.4s ease;
}

.about-hero-image img:hover {
    transform: scale(1.02) rotate(-1deg);
}

/* Learning Science Section */
.learning-science-area {
    padding: 89px 0;
    background: white;
}

.science-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.science-image img {
    width: 100%;
    border-radius: 21px;
    box-shadow: 0 13px 34px var(--shadow-light);
}

.science-features {
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin-top: 34px;
}

.science-feature {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 18px;
    background: var(--soft-lavender);
    border-radius: 13px;
    transition: all 0.3s ease;
}

.science-feature:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 21px var(--shadow-light);
}

.science-feature img {
    width: 34px;
    height: 34px;
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(240deg);
}

.science-feature h4 {
    color: var(--ocean-blue);
    margin-bottom: 5px;
}

.science-feature p {
    margin: 0;
    font-size: 0.9rem;
}

/* Philosophy Section */
.philosophy-area {
    padding: 89px 0;
    background: var(--soft-lavender);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 21px;
    margin-top: 34px;
}

.principle-item {
    text-align: center;
    padding: 21px;
    background: white;
    border-radius: 13px;
    box-shadow: 0 8px 21px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.principle-item:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 0 21px 55px var(--shadow-medium);
}

.principle-item img {
    width: 44px;
    height: 44px;
    margin: 0 auto 13px;
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(240deg);
}

.principle-item h4 {
    color: var(--ocean-blue);
    margin-bottom: 8px;
}

/* Success Stories */
.success-stories-area {
    padding: 89px 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.story-card {
    background: var(--soft-lavender);
    padding: 34px;
    border-radius: 21px;
    position: relative;
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.story-card:hover {
    border-color: var(--ocean-blue);
    transform: translateY(-8px);
    box-shadow: 0 21px 55px var(--shadow-medium);
}

.quote-icon {
    width: 34px;
    height: 34px;
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(240deg);
    margin-bottom: 13px;
}

.story-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 21px;
}

.story-author h4 {
    color: var(--ocean-blue);
    margin-bottom: 5px;
}

.story-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Training Section */
.training-area {
    padding: 89px 0;
    background: var(--soft-lavender);
}

.training-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.training-methods {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 34px;
}

.method-item {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 18px;
    background: white;
    border-radius: 13px;
    box-shadow: 0 5px 13px var(--shadow-light);
    transition: all 0.3s ease;
}

.method-item:hover {
    transform: translateX(8px);
    box-shadow: 0 13px 34px var(--shadow-medium);
}

.method-item img {
    width: 34px;
    height: 34px;
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(240deg);
}

/* Research Section */
.research-area {
    padding: 89px 0;
    background: white;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.research-card {
    text-align: center;
    padding: 34px;
    background: var(--soft-lavender);
    border-radius: 21px;
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.research-card:hover {
    border-color: var(--ocean-blue);
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 21px 55px var(--shadow-medium);
}

.research-icon {
    width: 89px;
    height: 89px;
    margin: 0 auto 21px;
    background: linear-gradient(135deg, white, var(--neutral-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 21px var(--shadow-light);
}

.research-icon img {
    width: 44px;
    height: 44px;
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(240deg);
}

/* Tools Section */
.tools-area {
    padding: 89px 0;
    background: var(--soft-lavender);
}

.tools-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.tools-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 13px;
    margin-top: 34px;
}

.tool-item {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 13px 18px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 13px var(--shadow-light);
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: translateX(5px);
}

.tool-item img {
    width: 21px;
    height: 21px;
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(240deg);
}

/* Resources Section */
.resources-area {
    padding: 89px 0;
    background: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.resource-card {
    text-align: center;
    padding: 34px;
    background: var(--soft-lavender);
    border-radius: 21px;
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.resource-card:hover {
    border-color: var(--ocean-blue);
    transform: translateY(-8px);
    box-shadow: 0 21px 55px var(--shadow-medium);
}

.resource-card img {
    width: 55px;
    height: 55px;
    margin-bottom: 21px;
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(240deg);
}

/* Thank You Page Specific Styles */
.thankyou-hero-banner {
    padding: 155px 0 89px;
    background: linear-gradient(135deg, var(--success-color) 0%, var(--ocean-blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.thankyou-hero-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.thankyou-content {
    text-align: center;
    max-width: 890px;
    margin: 0 auto;
}

.thankyou-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 34px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.thankyou-icon img {
    width: 55px;
    height: 55px;
    filter: brightness(0) invert(1);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.thankyou-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 21px;
}

.thankyou-message {
    font-size: 1.2rem;
    margin-bottom: 55px;
    color: rgba(255, 255, 255, 0.9);
}

.thankyou-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 34px;
    margin: 55px 0;
}

.detail-item {
    display: flex;
    gap: 13px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 21px;
    border-radius: 13px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.detail-item img {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}

.detail-item h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.detail-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.thankyou-actions {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px;
}

.thankyou-image {
    margin-top: 55px;
}

.thankyou-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 21px;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.3);
}

/* What's Next Section */
.whats-next-area {
    padding: 89px 0;
    background: white;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.step-item {
    position: relative;
    text-align: center;
    padding: 34px;
    background: var(--soft-lavender);
    border-radius: 21px;
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step-item:hover {
    border-color: var(--ocean-blue);
    transform: translateY(-8px);
    box-shadow: 0 21px 55px var(--shadow-medium);
}

.step-number {
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 21px var(--shadow-medium);
}

.step-content img {
    width: 55px;
    height: 55px;
    margin: 21px auto 21px;
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(240deg);
}

.step-content h3 {
    color: var(--ocean-blue);
    margin-bottom: 13px;
}

/* Benefits Reminder Section */
.benefits-reminder-area {
    padding: 89px 0;
    background: var(--soft-lavender);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin-top: 34px;
}

.benefit-item {
    display: flex;
    gap: 13px;
    align-items: center;
    padding: 21px;
    background: white;
    border-radius: 13px;
    box-shadow: 0 8px 21px var(--shadow-light);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 13px 34px var(--shadow-medium);
}

.benefit-item img {
    width: 34px;
    height: 34px;
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(240deg);
}

.benefit-item h4 {
    color: var(--ocean-blue);
    margin-bottom: 5px;
}

.benefit-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Info Reminder */
.contact-info-reminder {
    padding: 89px 0;
    background: white;
}

.contact-reminder-content {
    text-align: center;
    max-width: 890px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
    margin-top: 55px;
}

.contact-info-item {
    display: flex;
    gap: 21px;
    align-items: center;
    padding: 34px;
    background: var(--soft-lavender);
    border-radius: 21px;
    box-shadow: 0 13px 34px var(--shadow-light);
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    border-color: var(--ocean-blue);
    transform: translateY(-5px);
}

.contact-info-item img {
    width: 44px;
    height: 44px;
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(240deg);
}

.contact-info-item h4 {
    color: var(--ocean-blue);
    margin-bottom: 8px;
}

.contact-info-item p {
    margin: 0;
    color: var(--text-light);
}

/* Responsive Design for About and Thank You pages */
@media (max-width: 890px) {
    .about-hero-content,
    .science-content,
    .philosophy-content,
    .training-content,
    .tools-content,
    .benefits-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 34px;
    }

    .about-hero-text h1,
    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .philosophy-principles {
        grid-template-columns: 1fr;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
    }

    .thankyou-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-hero-text h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }

    .stories-grid,
    .research-grid,
    .resources-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .tools-list {
        grid-template-columns: 1fr;
    }
}