/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

/* Mobile Typography Optimization */
@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.2;
    }
    
    p {
        line-height: 1.6;
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 30%, #ffffff 50%, #ffed4e 70%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.6);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffc107 100%);
    color: #1a1a1a;
    border: 2px solid #ffd700;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: breathe 3s ease-in-out infinite;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 50%, #ffb300 100%);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: #ffb300;
    animation-play-state: paused;
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button .button-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url(../images/bgc.jpg) no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.stock-chart-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-icon:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: #ffffff;
}

.expert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 237, 78, 0.8));
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    color: #1a1a1a;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.name-highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffffff 70%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.6;
    color: #ffffff;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffffff 70%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 4px;
}

.hero-cta {
    font-size: 18px;
    padding: 20px 40px;
    animation: breathe-hero 2.5s ease-in-out infinite;
}

/* Profile Section */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-container {
    position: relative;
}

.profile-image {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(192, 192, 192, 0.6);
    box-shadow: 0 20px 40px rgba(192, 192, 192, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffc107 100%);
    border: 3px solid #ffb300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Breathe Animations */
@keyframes breathe {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

@keyframes breathe-hero {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.03);
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.7), inset 0 2px 0 rgba(255, 255, 255, 0.5);
        filter: brightness(1.1);
    }
}

@keyframes breathe-main {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
        filter: brightness(1) saturate(1);
    }
    50% { 
        transform: scale(1.025);
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.8), inset 0 2px 0 rgba(255, 255, 255, 0.6);
        filter: brightness(1.15) saturate(1.1);
    }
}

@keyframes breathe-fixed {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
        filter: brightness(1.08);
    }
}

@keyframes breathe-card {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: #c0c0c0;
    }
    50% { 
        transform: scale(1.005);
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
        border-color: #ffd700;
    }
}

.achievement-cards {
    position: absolute;
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.achievement-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 240, 0.9));
    padding: 16px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2d3748;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 192, 192, 0.3);
    animation: slideInLeft 1s ease-out;
}

.achievement-card:nth-child(2) {
    animation-delay: 0.2s;
}

.achievement-card i {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #2d3748;
}

.section-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f7fafc;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-item.reverse {
    direction: rtl;
}

.about-item.reverse > * {
    direction: ltr;
}

.about-content {
    padding: 40px;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffc107 100%);
    border: 3px solid #ffb300;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #2d3748;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-content strong {
    color: #2d3748;
    font-weight: 700;
}

.about-content em {
    color: #667eea;
    font-style: normal;
    font-weight: 600;
}

/* Highlight Stats */
.highlight-stats {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.stat-mini {
    text-align: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-mini .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-mini .label {
    display: block;
    font-size: 0.85rem;
    color: #4a5568;
    margin-top: 4px;
}

/* Achievement List */
.achievement-list {
    margin-top: 16px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    padding: 8px 0;
}

.achievement-item i {
    color: #ffd700;
    font-size: 16px;
}

.achievement-item span {
    color: #4a5568;
    font-weight: 500;
}

/* Mentor Stats */
.mentor-stats {
    display: flex;
    gap: 20px;
    margin-top: 16px;
}

.mentor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.mentor-item i {
    color: #667eea;
    font-size: 20px;
}

.mentor-item .number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.mentor-item .desc {
    display: block;
    font-size: 0.8rem;
    color: #4a5568;
    margin-top: 2px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 30%, #dee2e6 70%, #ced4da 100%);
    color: #2d3748;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    color: #ffffff;
    background: linear-gradient(135deg, #c0c0c0 0%, #ffffff 50%, #a8a8a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-text blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 40px;
    padding-left: 24px;
    border-left: 4px solid #c0c0c0;
    color: #4a5568;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.point i {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    margin-top: 4px;
}

.point h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2d3748;
}

.point p {
    color: #4a5568;
    line-height: 1.6;
}

.philosophy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-container {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.8));
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(192, 192, 192, 0.3);
    border-color: #c0c0c0;
}

.service-card.featured:hover {
    animation-play-state: paused;
}

.service-card.featured {
    border-color: #c0c0c0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    animation: breathe-card 5s ease-in-out infinite;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #e5e5e5, #c0c0c0);
    color: #2d3748;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #a8a8a8;
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid #5a67d8;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffc107 100%);
    border-color: #ffb300;
    color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2d3748;
}

.service-card p {
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 24px;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f7fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #2d3748;
}

.user-info span {
    font-size: 0.9rem;
    color: #718096;
}

.rating {
    margin-left: auto;
}

.rating i {
    background: linear-gradient(135deg, #e5e5e5, #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.7;
    color: #4a5568;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 20%, #404040 40%, #595959 60%, #737373 80%, #8c8c8c 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffffff 70%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 237, 78, 0.1));
    padding: 16px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.benefit i {
    color: #ffd700;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.main-cta {
    font-size: 20px;
    padding: 24px 48px;
    margin-bottom: 24px;
    animation: breathe-main 3.5s ease-in-out infinite;
}

.urgency-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    opacity: 0.8;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 0.8; }
    51%, 100% { opacity: 1; }
}

/* Fixed CTA Button */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.fixed-button {
    padding: 16px 32px;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    min-width: 200px;
    justify-content: center;
    animation: breathe-fixed 4s ease-in-out infinite;
}

.fixed-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
}

.fixed-button i {
    margin-right: 8px;
}

/* Button Icon Styles */
.button-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    object-fit: contain;
    vertical-align: middle;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-info h3 {
    color: white;
    margin-bottom: 8px;
}

.footer-info p {
    color: #cbd5e0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 60px 0 40px;
        min-height: 90vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 24px;
        line-height: 1.5;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        font-size: 16px;
        padding: 16px 28px;
    }
    
    /* Profile Section Mobile */
    .profile-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .achievement-cards {
        position: static;
        transform: none;
        margin-top: 20px;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .achievement-card {
        font-size: 0.9rem;
        padding: 12px 16px;
        min-width: auto;
    }
    
    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }
    
    .about-grid {
        gap: 50px;
    }
    
    .about-item {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .about-icon {
        margin: 0 auto 20px;
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* About Mobile Additions */
    .highlight-stats {
        gap: 16px;
        justify-content: center;
    }
    
    .stat-mini {
        padding: 10px 12px;
    }
    
    .stat-mini .number {
        font-size: 1.3rem;
    }
    
    .achievement-list {
        margin-top: 12px;
    }
    
    .achievement-item {
        margin-bottom: 6px;
        padding: 6px 0;
    }
    
    .mentor-stats {
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .mentor-item {
        padding: 10px 12px;
    }
    
    .mentor-item .number {
        font-size: 1.1rem;
    }
    
    /* Philosophy Section Mobile */
    .philosophy {
        padding: 60px 0;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .philosophy-text h2 {
        font-size: 2rem;
        margin-bottom: 24px;
    }
    
    .philosophy-text blockquote {
        font-size: 1.2rem;
        margin-bottom: 30px;
        padding-left: 16px;
        text-align: left;
    }
    
    .philosophy-points {
        gap: 20px;
    }
    
    .point {
        text-align: left;
        gap: 12px;
    }
    
    .point h4 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .point p {
        font-size: 0.95rem;
    }
    
    .chart-container {
        width: 100%;
        max-width: 350px;
        height: 250px;
        margin: 0 auto;
    }
    
    /* Services Section Mobile */
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 24px 20px;
        margin: 0 auto;
        max-width: 320px;
        width: 100%;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    
    .service-card li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    /* Testimonials Section Mobile */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 20px;
        margin: 0 auto;
        max-width: 320px;
        width: 100%;
    }
    
    .testimonial-header {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .avatar {
        width: 50px;
        height: 50px;
    }
    
    .user-info h4 {
        font-size: 1rem;
    }
    
    .user-info span {
        font-size: 0.85rem;
    }
    
    .testimonial-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Final CTA Section Mobile */
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .benefit {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .benefit i {
        font-size: 18px;
    }
    
    .main-cta {
        font-size: 16px;
        padding: 18px 32px;
        margin-bottom: 20px;
    }
    
    .urgency-text {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-info h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .footer-info p {
        font-size: 0.9rem;
    }
    
    .footer-links {
        gap: 20px;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 15px;
        font-size: 0.85rem;
    }
    
    /* Fixed Button Mobile */
    .fixed-button .button-text {
        display: inline;
        font-size: 14px;
    }
    
    .fixed-button {
        padding: 12px 20px;
        border-radius: 25px;
        width: auto;
        height: auto;
        font-size: 14px;
        bottom: 16px;
        white-space: nowrap;
        min-width: 160px;
        max-width: 200px;
    }
    
    .fixed-button i {
        margin-right: 6px;
        font-size: 16px;
    }
    
    /* Mobile Button Icon */
    .button-icon {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    /* Hero Section Small Mobile */
    .hero {
        padding: 40px 0 30px;
        min-height: 85vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        gap: 20px;
        margin-bottom: 24px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-cta {
        font-size: 15px;
        padding: 14px 24px;
    }
    
    /* Profile Section Small Mobile */
    .profile-image {
        width: 180px;
        height: 180px;
    }
    
    .achievement-card {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
    
    /* Section Headers Small Mobile */
    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .section-header p {
        font-size: 0.95rem;
        padding: 0 5px;
    }
    
    /* About Section Small Mobile */
    .about {
        padding: 50px 0;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .about-content {
        padding: 16px;
    }
    
    .about-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .about-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    /* About Small Mobile Additions */
    .highlight-stats {
        gap: 12px;
    }
    
    .stat-mini {
        padding: 8px 10px;
    }
    
    .stat-mini .number {
        font-size: 1.2rem;
    }
    
    .stat-mini .label {
        font-size: 0.8rem;
    }
    
    .mentor-stats {
        gap: 12px;
    }
    
    .mentor-item {
        padding: 8px 10px;
    }
    
    .mentor-item .number {
        font-size: 1rem;
    }
    
    .mentor-item .desc {
        font-size: 0.75rem;
    }
    
    /* Philosophy Section Small Mobile */
    .philosophy {
        padding: 50px 0;
    }
    
    .philosophy-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .philosophy-text blockquote {
        font-size: 1.1rem;
        margin-bottom: 24px;
        padding-left: 12px;
    }
    
    .point h4 {
        font-size: 1rem;
    }
    
    .point p {
        font-size: 0.9rem;
    }
    
    .chart-container {
        max-width: 300px;
        height: 200px;
        padding: 15px;
    }
    
    /* Services Section Small Mobile */
    .services {
        padding: 50px 0;
    }
    
    .service-card {
        padding: 20px 16px;
        max-width: 280px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }
    
    .service-card li {
        font-size: 0.85rem;
        padding: 5px 0;
    }
    
    /* Testimonials Section Small Mobile */
    .testimonials {
        padding: 50px 0;
    }
    
    .testimonial-card {
        padding: 16px;
        max-width: 280px;
    }
    
    .avatar {
        width: 45px;
        height: 45px;
    }
    
    .user-info h4 {
        font-size: 0.95rem;
    }
    
    .user-info span {
        font-size: 0.8rem;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
    }
    
    /* Final CTA Section Small Mobile */
    .final-cta {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 24px;
        padding: 0 5px;
    }
    
    .benefits-list {
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .benefit {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .benefit i {
        font-size: 16px;
    }
    
    .main-cta {
        font-size: 15px;
        padding: 16px 28px;
        margin-bottom: 16px;
    }
    
    .urgency-text {
        font-size: 0.85rem;
        padding: 0 16px;
    }
    
    /* Footer Small Mobile */
    .footer {
        padding: 24px 0 12px;
    }
    
    .footer-info h3 {
        font-size: 1.1rem;
    }
    
    .footer-info p {
        font-size: 0.85rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
    
    /* Fixed Button Small Mobile */
    .fixed-button .button-text {
        display: inline;
        font-size: 12px;
    }
    
    .fixed-button {
        padding: 10px 16px;
        border-radius: 20px;
        width: auto;
        height: auto;
        font-size: 12px;
        bottom: 12px;
        white-space: nowrap;
        min-width: 140px;
        max-width: 180px;
    }
    
    .fixed-button i {
        margin-right: 4px;
        font-size: 14px;
    }
    
    /* Small Mobile Button Icon */
    .button-icon {
        width: 16px;
        height: 16px;
        margin-right: 4px;
    }
}
