/* Hero Section */
.hero {
    background: white;
    color: #333;
    padding: 60px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: url('/design/partial_infinity_symbol.svg') no-repeat right center;
    background-size: contain;
    opacity: 1;
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 2px;
    color: #62B3AF;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #62B3AF;
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.4;
    color: #333;
}