:root {
    --primary-color: #6366F1;
    --secondary-color: #10B981;
    --dark-color: #111827;
    --darker-color: #0A0C14;
    --light-color: #E5E7EB;
    --accent-color: #8B5CF6;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--light-color);
    background-color: var(--darker-color);
}

.topbar {
    background-color: var(--darker-color);
    color: var(--light-color);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar i {
    color: var(--primary-color);
}

.navbar {
    padding: 1rem 0;
    background-color: var(--dark-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.logo {
    height: 40px;
    width: auto;
}

.register-btn {
    background-color: var(--primary-color);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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='%236366F1' fill-opacity='0.05'%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");
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--light-color);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--light-color);
    margin: 0.5rem 0 0;
    opacity: 0.8;
}

.hero-image {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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='%236366F1' fill-opacity='0.03'%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");
}

.about-image {
    position: relative;
    padding: 2rem;
}

.about-image .main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header .subtitle {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.about-description {
    color: var(--light-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.about-features .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-features .icon-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--light-color);
    opacity: 0.9;
    margin: 0;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    flex: 1;
}

.stat-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--light-color);
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.steps-section {
    padding: 6rem 0;
    background: var(--dark-color);
    position: relative;
}

.steps-section .section-header {
    margin-bottom: 4rem;
}

.steps-section .section-description {
    color: var(--light-color);
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-item {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-connector {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.step-item h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--light-color);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.steps-footer {
    margin-top: 3rem;
}

.steps-footer .btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.age-notice {
    color: var(--light-color);
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 1rem 0 0;
}

.faq-section {
    padding: 6rem 0;
    background: var(--darker-color);
    position: relative;
}

.faq-section .section-header {
    margin-bottom: 4rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1.5rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236366F1' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: var(--light-color);
    font-size: 1rem;
    line-height: 1.6;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.age-disclaimer-section {
    padding: 5rem 0;
    background: var(--dark-color);
    position: relative;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-icon {
    width: 80px;
    height: 80px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.disclaimer-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.disclaimer-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.disclaimer-content p {
    color: var(--light-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.disclaimer-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.disclaimer-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.disclaimer-features .feature i {
    font-size: 2rem;
    color: var(--primary-color);
}

.disclaimer-features .feature span {
    color: white;
    font-size: 1rem;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.05'%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");
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 500;
}

.cta-buttons .btn-outline-light {
    border-width: 2px;
}

.support-info {
    color: rgba(255, 255, 255, 0.9);
}

.support-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.responsible-section {
    padding: 6rem 0;
    background: var(--darker-color);
    position: relative;
}

.guidelines-card, .support-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.guidelines-card h3, .support-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guidelines-card h3 i, .support-card h3 i {
    color: var(--primary-color);
}

.guidelines-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guidelines-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.guidelines-list li i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.guidelines-list li h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.guidelines-list li p {
    color: var(--light-color);
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

.support-resources {
    display: grid;
    gap: 2rem;
}

.resource-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.resource-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.resource-item p {
    color: var(--light-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.resource-item .btn {
    border-width: 2px;
    padding: 0.5rem 1rem;
}

.footer {
    background: var(--darker-color);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.footer-disclaimer .age-notice {
    color: var(--light-color);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.license-info,
.operator-info {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
}

.license-info p,
.operator-info p {
    color: var(--light-color);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.certification-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.certification-images img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.certification-images a:hover img {
    opacity: 1;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: var(--light-color);
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-image {
        margin-top: 3rem;
    }

    .hero-features {
        flex-direction: column;
    }

    .feature-item {
        min-width: 100%;
    }

    .steps-container {
        flex-direction: column;
        gap: 1rem;
    }

    .step-item {
        max-width: 100%;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .disclaimer-features {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .guidelines-card, .support-card {
        margin-bottom: 2rem;
    }

    .footer-links {
        gap: 1rem;
        padding: 0 1rem;
    }

    .certification-images {
        gap: 1rem;
        padding: 0 1rem;
    }

    .certification-images img {
        height: 30px;
    }
}

.page-section {
    padding: 6rem 0;
    background: var(--darker-color);
    min-height: calc(100vh - 500px);
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1rem;
}

.page-header .lead {
    color: var(--light-color);
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.section-block {
    margin-bottom: 3rem;
}

.section-block:last-child {
    margin-bottom: 0;
}

.section-block h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.section-block h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.section-block p {
    color: var(--light-color);
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.section-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.section-block ul li {
    color: var(--light-color);
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.section-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .content-card {
        padding: 2rem;
    }

    .section-block h2 {
        font-size: 1.6rem;
    }

    .section-block p {
        font-size: 1rem;
    }
}

.register-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
    min-height: calc(100vh - 500px);
    position: relative;
}

.register-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.register-card h1 {
    color: white;
    font-size: 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1rem;
}

.register-card .lead {
    color: var(--light-color);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.form-group label {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border-radius: 10px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: white;
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-color);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.toggle-password:hover {
    opacity: 1;
}

.form-check-label {
    color: var(--light-color);
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.success-content {
    background: var(--dark-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 1rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.success-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.success-content p {
    color: var(--light-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 991.98px) {
    .register-card {
        padding: 2rem;
    }
}

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
    min-height: calc(100vh - 500px);
    position: relative;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.contact-card h1 {
    color: white;
    font-size: 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1rem;
}

.contact-card .lead {
    color: var(--light-color);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-info {
    text-align: center;
}

.info-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    margin-bottom: 1rem;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-item h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--light-color);
    opacity: 0.9;
    margin: 0;
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form select.form-control option {
    background: var(--dark-color);
    color: white;
}

@media (max-width: 991.98px) {
    .contact-card {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }

    .about-features {
        gap: 1.5rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item {
        text-align: center;
    }
}
