* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff; 
    min-height: 100vh;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .logo, .cta-button {
    font-family: 'Montserrat', sans-serif;
}

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

/* Header */
header {
    background: rgba(245, 246, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4A90E2;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: relative;
}

.nav-links a:hover {
    color: #4A90E2;
    background: rgba(74, 144, 226, 0.1);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #F5F6F5;
    border-radius: 25px;
    padding: 0.5rem;
    border: 2px solid #A8A8A8;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: #333;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.lang-btn.active {
    background: #4A90E2;
    color: white;
}

.lang-btn:hover:not(.active) {
    background: #A8A8A8;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4A90E2 0%, #88B04B 100%);
    padding: 8rem 0 12rem 0;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    min-height: 85vh;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6rem), 0 100%);
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 0 0 450px;
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); 
    border: none;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px; /* Limits line length for readability */
}

.cta-button {
    display: inline-block;
    background: #F4C430;
    color: #2c3e50;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(244, 196, 48, 0.39);
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #f5ce5e;
    box-shadow: 0 6px 20px rgba(244, 196, 48, 0.23);
}

/* Services Section - New Guidance Layout */
.services {
    padding: 8rem 0 8rem 0;
    background: #f8f9fa;
    margin-top: -6.1rem; 
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.guidance-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guidance-philosophy {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #4A90E2;
}

.philosophy-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #4A90E2;
}

.guidance-philosophy h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.guidance-philosophy p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

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

@media (min-width: 768px) {
    .guidance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .guidance-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.guidance-step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.guidance-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.guidance-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 196, 48, 0.1), transparent);
    transition: left 0.5s;
}

.guidance-step:hover::before {
    left: 100%;
}

.step-number {
    background: #4A90E2;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.guidance-step:nth-child(2) .step-number {
    background: #88B04B;
}

.guidance-step:nth-child(3) .step-number {
    background: #F4C430;
    color: #333;
}

.guidance-step:nth-child(4) .step-number {
    background: #E74C3C;
}

.guidance-step h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.guidance-step p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.guidance-situations {
    background: linear-gradient(135deg, #4A90E2 0%, #88B04B 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guidance-situations::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(244, 196, 48, 0.1), transparent, rgba(244, 196, 48, 0.1));
}

.guidance-situations h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.guidance-situations p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    text-align: left;
}

.guidance-situations p:last-child {
    margin-bottom: 0;
}

/* Remove old service card styles but keep the shimmer animation */
@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background: white;
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, #4A90E2 0%, #88B04B 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(244, 196, 48, 0.1), transparent, rgba(244, 196, 48, 0.1));
    animation: shimmer 3s infinite;
}

.pricing-badge {
    background: #F4C430;
    color: #333;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.pricing-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-features li {
    padding: 1rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.pricing-features li::before {
    content: '✓';
    background: #F4C430;
    color: #333;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-note {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 2px solid rgba(244, 196, 48, 0.3);
    position: relative;
    z-index: 1;
}

.pricing-note h4 {
    color: #F4C430;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.pricing-cta {
    background: #F4C430;
    color: #333;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.5);
    background: #F2C130;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, #4A90E2 0%, #88B04B 100%);
    color: white;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}

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

.about h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
    text-align: left;
}

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

/* Interest Form Section */
.interest-form {
    padding: 6rem 0;
    background: #F5F6F5;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 6px solid #4A90E2;
}

.form-container h2 {
    color: #4A90E2;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.form-group label {
    display: block;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #A8A8A8;
    border-radius: 10px;
    font-size: 1rem;
    background: #F5F6F5;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
}

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

.submit-btn {
    width: 100%;
    background: #F4C430;
    color: #333;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 196, 48, 0.4);
    background: #F2C130;
}

/* Footer */
footer {
    background: #A8A8A8;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-image {
        flex: 0 0 320px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background: rgba(245, 246, 245, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 2rem;
        width: 30%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -5px 0px 15px rgba(0,0,0,0.1);
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        opacity: 0;
    }

    .hamburger {
        display: block;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .toggle .line2 {
        opacity: 0;
    }
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-right {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .about p {
        text-align: center;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}


@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
}

/* Language content hiding */
.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}
