/* Premium Crypto Wallet About Page Styles */
:root {
    --primary-color: #000000;
    --primary-glow: rgba(0, 0, 0, 0.15);
    --secondary-color: #000000;
    --secondary-glow: rgba(0, 0, 0, 0.15);
    --dark-bg: #ffffff;
    --card-bg: rgba(0, 0, 0, 0.03);
    --text-color: #000000;
    --text-color-light: #666666;
    --border-radius: 16px;
    --card-border: 1px solid rgba(0, 0, 0, 0.1);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Force white background for about page */
html,
body,
body.about,
body.page-template-template-about,
.site,
.site-content,
#primary,
.about-page,
.about-page *,
main.site-main,
article.container,
.container {
    background-color: #ffffff !important;
    background: #ffffff !important;
}

body,
body.about,
body.page-template-template-about {
    color: #000000 !important;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4,
.about-page h5,
.about-page h6 {
    color: #000000 !important;
}

/* Global Styles */
.about-page {
    color: var(--text-color) !important;
    background: var(--dark-bg) !important;
    position: relative;
    overflow: hidden;
}

.about-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent !important;
    pointer-events: none;
    z-index: 1;
}

/* Common Heading Styles */
.about-page h2 {
    font-size: 64px;
    font-weight: 800;
    text-align: center;
    margin: 0 auto 40px;
    color: #000000 !important;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.about-page h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #000000;
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out forwards;
}

/* Section Wrappers */
.mission-section,
.vision-section,
.values-section,
.why-choose-section,
.team-section,
.cta-section {
    text-align: center;
    position: relative;
    padding: 120px 0;
}

.mission-content,
.vision-content,
.values-content,
.why-choose-content,
.team-content,
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Descriptions */
.mission-section p,
.vision-section p,
.team-section > p {
    font-size: 24px;
    line-height: 1.7;
    color: var(--text-color-light) !important;
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    letter-spacing: -0.3px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Hero Section Special Styling */
.hero-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0;
    position: relative;
    background: #ffffff !important;
}

.hero-section h1 {
    font-size: 72px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 30px 0;
    color: #000000 !important;
    letter-spacing: -1px;
    line-height: 1.1;
    position: relative;
    width: 100%;
    max-width: 1200px;
}

.hero-section .lead {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-color-light) !important;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0;
    opacity: 0.8;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-top: 20px;
}

.hero-section .lead::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #000000;
    margin: 30px auto 0;
    opacity: 0.5;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CTA Section Special Styling */
.cta-section h2 {
    font-size: 64px;
    margin: 0 auto 20px;
    color: #000000;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

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

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100px; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-page h2 {
        font-size: 40px;
        padding-bottom: 15px;
    }

    .hero-section h1 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .hero-section .lead {
        font-size: 16px;
        padding: 0 20px;
        padding-top: 10px;
    }

    .hero-section .lead::after {
        margin-top: 20px;
    }

    .mission-section p,
    .vision-section p,
    .team-section > p {
        font-size: 18px;
        padding: 0 20px;
    }

    .cta-section h2 {
        font-size: 40px;
    }
}

/* Hero Section */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-glow), var(--secondary-glow));
    opacity: 0.1;
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 24px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color-light);
    line-height: 1.8;
}

/* Mission Section */
.mission-section {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
}

.mission-section > .wp-block-group {
    max-width: 1400px;
}

.mission-section h2 {
    font-size: 64px;
    font-weight: 800;
    text-align: center;
    margin: 0 auto 40px;
    color: #000000;
    
    
    letter-spacing: -0.5px;
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding-bottom: 20px;
    left: auto;
    transform: none;
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.mission-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out forwards;
}

.mission-section p {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-color-light);
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    letter-spacing: -0.3px;
}

.mission-points .point h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.mission-points .point p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
}

/* Feature Cards */
.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.1);
}

.feature-card .emoji {
    font-size: 48px;
    margin-bottom: 30px;
    display: block;
    filter: drop-shadow(0 0 10px var(--primary-glow));
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-color-light);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* Vision Section */
.vision-section {
    padding: 120px 0;
    text-align: center;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.15;
    animation: pulse 4s ease-in-out infinite;
}

.vision-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vision-section h2 {
    font-size: 64px;
    font-weight: 800;
    text-align: center;
    margin: 0 auto 40px;
    color: #000000;
    
    
    letter-spacing: -0.5px;
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding-bottom: 20px;
    left: auto;
    transform: none;
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.vision-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out forwards;
}

.vision-section p {
    font-size: 24px;
    line-height: 1.7;
    color: var(--text-color-light);
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    letter-spacing: -0.3px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.vision-goals .goal {
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
}

.vision-goals .goal:nth-child(1) { animation-delay: 0.4s; }
.vision-goals .goal:nth-child(2) { animation-delay: 0.6s; }
.vision-goals .goal:nth-child(3) { animation-delay: 0.8s; }

.vision-goals .goal:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.vision-goals .goal h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #000000 !important;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.vision-goals .goal p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    color: var(--text-color-light);
}

@keyframes pulse {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.3; }
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
}

.values-grid {
    gap: 40px;
}

.values-grid .wp-block-column {
    padding: 40px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: var(--card-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 0.6s ease-out backwards;
}

.values-grid .wp-block-column:nth-child(2) {
    animation-delay: 0.2s;
}

.values-grid .wp-block-column:nth-child(3) {
    animation-delay: 0.4s;
}

.values-grid .wp-block-column:nth-child(4) {
    animation-delay: 0.6s;
}

.values-grid .wp-block-column:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: var(--dark-bg);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 30px;
    display: inline-block;
    padding: 30px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transition: var(--transition);
}

.wp-block-column:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
}

.team-values .wp-block-column {
    padding: 40px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: var(--card-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.team-section h2 {
    font-size: 56px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    background: var(--gradient);
    
    
    letter-spacing: -0.5px;
}

.team-section > p {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-color-light);
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    letter-spacing: -0.3px;
}

.team-values .value h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.team-values .value p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color-light);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    text-align: center;
    background: #ffffff !important;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin: 40px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='rgba(255,255,255,0.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.cta-section p {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 40px;
    /* text-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
    letter-spacing: -0.3px;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.wp-block-button__link {
    padding: 20px 40px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    font-weight: bold;
    transition: var(--transition);
    font-size: 18px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.wp-block-button__link {
    background: #000000;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    border: 2px solid #000000;
    color: #000000 !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.wp-block-button__link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes glow {
    0% {
        text-shadow: 0 0 20px var(--primary-glow);
    }
    100% {
        text-shadow: 0 0 40px var(--primary-glow), 0 0 80px var(--secondary-glow);
    }
}

/* Common Styles */
.wp-block-group {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 800;
}

p {
    line-height: 1.8;
    font-size: 18px;
}

.wp-block-columns {
    display: flex;
    gap: 30px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-page h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .mission-section h2,
    .vision-section h2,
    .values-section h2,
    .why-choose-section h2,
    .team-section h2,
    .cta-section h2 {
        font-size: 40px;
    }

    .mission-section p,
    .vision-section p,
    .team-section > p {
        font-size: 18px;
    }

    .mission-points .point h3,
    .vision-goals .goal h3,
    .value-card h3,
    .why-choose-item h3,
    .team-values .value h3 {
        font-size: 24px;
    }

    .mission-points .point p,
    .vision-goals .goal p,
    .value-card p,
    .why-choose-item p,
    .team-values .value p {
        font-size: 16px;
    }

    .cta-section p {
        font-size: 20px;
    }

    .feature-card {
        padding: 30px;
    }

    .feature-card .emoji {
        font-size: 36px;
    }

    .wp-block-columns {
        flex-direction: column;
        padding: 0 20px;
    }

    .wp-block-column {
        margin-bottom: 30px;
    }

    .values-grid {
        gap: 20px;
    }
    
    .hero-section h1 {
        font-size: 48px;
    }
    
    .hero-section .lead {
        font-size: 22px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wp-block-button {
        width: 100%;
    }
    
    .wp-block-button__link {
        width: 100%;
        text-align: center;
    }
    
    .mission-section,
    .vision-section,
    .values-section,
    .features-section,
    .team-section,
    .cta-section {
        padding: 80px 0;
    }

    .cta-section {
        padding: 80px 20px;
        margin: 20px 10px;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .cta-section p {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .wp-block-button__link {
        width: 100%;
        text-align: center;
    }

    .vision-section h2 {
        font-size: 40px;
        padding-bottom: 15px;
    }

    .vision-section p {
        font-size: 18px;
        padding: 0 20px;
    }

    .vision-goals {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vision-goals .goal {
        padding: 30px;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
}

.why-choose-section h2 {
    font-size: 56px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient);
    
    
    letter-spacing: -0.5px;
}

.why-choose-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: var(--gradient);
    transform: translateX(-50%);
    border-radius: 2px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-choose-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 0.6s ease-out backwards;
}

.why-choose-item:nth-child(2) {
    animation-delay: 0.2s;
}

.why-choose-item:nth-child(3) {
    animation-delay: 0.4s;
}

.why-choose-item:nth-child(4) {
    animation-delay: 0.6s;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.why-choose-item:hover::before {
    transform: scaleX(1);
}

.why-choose-item:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    border-radius: 50%;
    font-size: 32px;
    position: relative;
    transition: var(--transition);
}

.why-choose-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
}

.why-choose-item:hover .why-choose-icon::after {
    opacity: 1;
}

.why-choose-item h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.why-choose-item p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color-light);
}

/* Meet Our Team Section */
.team-section {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.team-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-color-light);
    font-size: 18px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-item {
        padding: 30px 20px;
    }

    .why-choose-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .why-choose-item h3 {
        font-size: 20px;
    }

    .team-description {
        padding: 0 20px;
        font-size: 16px;
    }
}

.why-choose-section .emoji {
    font-size: 48px;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 0 10px var(--primary-glow));
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.why-choose-section .feature-card {
    background: rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.why-choose-section .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.why-choose-section .feature-card:hover::before {
    transform: scaleX(1);
}

.why-choose-section .feature-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.1);
}

.why-choose-section .feature-card:hover .emoji {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.why-choose-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
}

.why-choose-section p {
    color: var(--text-color-light);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-choose-section .emoji {
        font-size: 36px;
    }
    
    .why-choose-section .feature-card {
        padding: 30px 20px;
    }
    
    .why-choose-section h3 {
        font-size: 20px;
    }
}

/* Fix heading alignment for all sections */
.values-section h2,
.why-choose-section h2,
.team-section h2,
.cta-section h2 {
    font-size: 64px;
    font-weight: 800;
    text-align: center;
    margin: 0 auto 40px;
    color: #000000;
    
    
    letter-spacing: -0.5px;
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding-bottom: 20px;
    left: auto;
    transform: none;
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

/* Add underline effect */
.values-section h2::after,
.why-choose-section h2::after,
.team-section h2::after,
.cta-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out forwards;
}

/* Section content wrappers */
.values-section .values-content,
.why-choose-section .why-choose-content,
.team-section .team-content,
.cta-section .cta-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section descriptions */
.values-section p,
.why-choose-section p,
.team-section > p,
.cta-section p {
    font-size: 24px;
    line-height: 1.7;
    color: var(--text-color-light);
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    letter-spacing: -0.3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .values-section h2,
    .why-choose-section h2,
    .team-section h2,
    .cta-section h2 {
        font-size: 40px;
        padding-bottom: 15px;
    }

    .values-section p,
    .why-choose-section p,
    .team-section > p,
    .cta-section p {
        font-size: 18px;
        padding: 0 20px;
    }
}

.nav-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
} 