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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #f7fafc;
}

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

.ga-hero-section {
    background: linear-gradient(135deg, #e91e63 0%, #1976d2 50%, #0d47a1 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ga-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.ga-hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.ga-hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.ga-main-content {
    background: white;
    padding: 4rem 0;
}

.ga-intro-block {
    margin-bottom: 4rem;
}

.ga-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.ga-split-layout.ga-reverse {
    direction: rtl;
}

.ga-split-layout.ga-reverse > * {
    direction: ltr;
}

.ga-text-block h2 {
    color: #e91e63;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid #1976d2;
    padding-left: 1rem;
}

.ga-text-block p {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.ga-image-block img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.ga-image-block img:hover {
    transform: scale(1.02);
}

.ga-section-heading {
    color: #e91e63;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.ga-section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #1976d2);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.ga-activity-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.ga-activity-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.ga-activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.ga-activity-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ga-activity-card-content {
    padding: 1.5rem;
}

.ga-activity-card h3 {
    color: #1976d2;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ga-activity-list {
    list-style: none;
    padding: 0;
}

.ga-activity-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4a5568;
}

.ga-activity-list li::before {
    content: "✓";
    color: #e91e63;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.ga-highlight-box {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08) 0%, rgba(25, 118, 210, 0.08) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    border: 2px solid rgba(233, 30, 99, 0.1);
}

.ga-highlight-box h2 {
    color: #e91e63;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.ga-benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.ga-benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ga-benefit-icon {
    background: linear-gradient(135deg, #e91e63, #1976d2);
    color: white;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.ga-benefit-text h4 {
    color: #2d3748;
    margin-bottom: 0.3rem;
}

.ga-benefit-text p {
    color: #718096;
    font-size: 0.95rem;
}

.ga-typical-day {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.ga-typical-day h2 {
    color: #1976d2;
    margin-bottom: 2rem;
    text-align: center;
}

.ga-day-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.ga-day-step {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.ga-day-step-number {
    background: linear-gradient(135deg, #e91e63, #1976d2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.ga-day-step p {
    color: #4a5568;
    font-size: 0.95rem;
}

.ga-funding-section {
    background: linear-gradient(135deg, #1976d2, #0d47a1);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.ga-funding-section h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.ga-funding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.ga-funding-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.ga-contact-section {
    background: linear-gradient(135deg, #e91e63 0%, #1976d2 100%);
    color: white;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.3);
}

.ga-contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.ga-contact-section > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

.ga-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ga-contact-item {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.ga-contact-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ga-tagline {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.ga-why-love {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 2px solid #f0f0f0;
}

.ga-why-love h2 {
    color: #e91e63;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ga-love-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.ga-love-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ga-love-item::before {
    content: "💜";
}

@media (max-width: 768px) {
    .ga-hero-title {
        font-size: 2rem;
    }
    
    .ga-split-layout {
        grid-template-columns: 1fr;
    }
    
    .ga-split-layout.ga-reverse {
        direction: ltr;
    }
    
    .ga-activity-cards {
        grid-template-columns: 1fr;
    }
    
    .ga-contact-section {
        padding: 2rem;
    }
}
