.home-hero {
    padding: 4.6rem 0 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.home-hero-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    align-items: center;
    column-gap: 8vw;
}

.home-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 33%;
    row-gap: 20vh;
}
.home-hero-title {
    letter-spacing: 2px;
}

.home-hero-subtitle {
    line-height: 200%;
    letter-spacing: 1px;
}

.hero-photo-frame {
    position: relative;
    overflow: hidden;
    width: 600px;
    height: 600px;
    border-bottom-right-radius: 30%;
    border-top-left-radius: 45%;
}

.hero-photo {
    position: absolute;
    top: 75%;
    left: 50%;
    width: 600px;
    height: 900px;
    object-fit: cover;
    overflow: visible;
    border-bottom-right-radius: 30%;
    border-top-left-radius: 45%;
    transform: translate(-50%,-50%) scale(1);
    transition: transform 0.5s ease;
}

.hero-photo:hover {
    transform: translate(-50%,-50%) scale(1.03);
    transition: transform 0.5s ease;
}

.how-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title-with-line {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
    text-transform: uppercase;
    position: relative;
}

.section-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #667eea;
    border-radius: 2px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.how-item {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.how-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.how-title {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.how-text {
    line-height: 1.6;
    color: #333;
}

.faq-section {
    background: white;
    padding: 6rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.faq-column {
    flex: 1;
    min-width: 300px;
}

.faq-card {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-question {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-answer {
    color: #333;
    line-height: 1.6;
}

.activity-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.activity-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.activity-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.activity-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.activity-link {
    text-decoration: none;
}

.activity-circle {
    background: #667eea;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.activity-title {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.how-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-card:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.activity-item:hover {
    transform: translateY(-5px);
}

.activity-circle:hover {
    background: #5a6fd8;
    transform: scale(1.1);
}

.btn-primary:hover,
.btn-outline:hover,
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
}