/* BetBase CSS - radio/dropdown.css */

/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* Header Styles */
.header-notice {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
}

.header-notice .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.notice-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.menu-icon {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* game Section */
.games-section {
    padding: 80px 0;
    background: white;
}

.games-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: #1f2937;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.game-card.premium {
    border-color: #fbbf24;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.game-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.game-logo {
    text-align: center;
    margin-bottom: 20px;
}

.game-logo img {
    max-height: 60px;
    max-width: 200px;
    object-fit: contain;
}

.game-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.score {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars img {
    width: 20px;
    height: 20px;
    filter: invert(73%) sepia(58%) saturate(3750%) hue-rotate(29deg) brightness(96%) contrast(105%);
}

.game-info h3 {
    color: #1f2937;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: center;
}

.game-info p {
    color: #6b7280;
    text-align: center;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin-bottom: 25px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #4b5563;
}

.features-list img {
    width: 16px;
    height: 16px;
    filter: invert(34%) sepia(100%) saturate(1467%) hue-rotate(88deg) brightness(96%) contrast(96%);
}

.game-actions {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.btn-primary img, .btn-secondary img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.btn-secondary img {
    filter: invert(36%) sepia(8%) saturate(556%) hue-rotate(202deg) brightness(94%) contrast(85%);
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: #f8fafc;
}

.info-content h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: #1f2937;
}

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

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    filter: invert(38%) sepia(100%) saturate(1779%) hue-rotate(212deg) brightness(98%) contrast(95%);
}

.info-card h3 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    padding: 5px;
}

.close-modal img {
    width: 24px;
    height: 24px;
    filter: invert(50%);
}

.close-modal:hover img {
    filter: invert(20%);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: #f9fafb;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.responsible-gaming {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.responsibility-badge {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }

    .game-actions {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .game-card {
        padding: 20px;
    }

    .feature {
        padding: 12px 20px;
    }

    .container {
        padding: 0 15px;
    }

    .games-section, .info-section {
        padding: 60px 0;
    }

    .hero {
        padding: 60px 0;
    }
}

/* Age Verification Popup */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(5px);
}

.age-popup-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: agePopupSlide 0.5s ease;
}

@keyframes agePopupSlide {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.age-popup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.age-icon {
    width: 32px;
    height: 32px;
    filter: invert(73%) sepia(58%) saturate(3750%) hue-rotate(29deg) brightness(96%) contrast(105%);
}

.age-popup-header h2 {
    color: #1f2937;
    font-size: 1.8rem;
    margin: 0;
}

.age-popup-body p {
    color: #4b5563;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.age-disclaimer {
    background: #fef3c7;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    font-weight: 600;
    color: #92400e !important;
}

.age-popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.age-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.age-btn img {
    width: 18px;
    height: 18px;
}

.age-btn-yes {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.age-btn-yes:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
}

.age-btn-yes img {
    filter: brightness(0) invert(1);
}

.age-btn-no {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.age-btn-no:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.age-btn-no img {
    filter: invert(36%) sepia(8%) saturate(556%) hue-rotate(202deg) brightness(94%) contrast(85%);
}

/* Disclaimer Section */
.disclaimer-section {
    background: #f8fafc;
    padding: 50px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

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

.disclaimer-content h3 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.disclaimer-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.disclaimer-content strong {
    color: #1f2937;
}

/* Footer Styles */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3, .footer-section h4 {
    color: #f9fafb;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

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

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #9ca3af;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #d1d5db;
}

.contact-info img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #60a5fa;
}

.responsible-gaming-info p {
    margin-bottom: 15px;
    font-weight: 500;
}

.help-links {
    list-style: none;
}

.help-links li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #d1d5db;
}

.help-links img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.help-links a {
    color: #60a5fa;
    text-decoration: none;
}

.help-links a:hover {
    text-decoration: underline;
}

/* Regulatory Section */
.regulatory-section {
    border-top: 1px solid #374151;
    padding-top: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.regulatory-section h4 {
    color: #f9fafb;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.regulatory-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.regulatory-link {
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
}

.regulatory-link:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.regulatory-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0.9);
    padding: 10px;
    border-radius: 8px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: #f59e0b !important;
}

.footer-warning-icon {
    width: 16px;
    height: 16px;
    filter: invert(73%) sepia(58%) saturate(3750%) hue-rotate(29deg) brightness(96%) contrast(105%);
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        justify-content: center;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .contact-info p {
        justify-content: center;
    }

    .regulatory-logos {
        gap: 20px;
    }

    .regulatory-logo {
        height: 50px;
    }

    .age-popup-buttons {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
        justify-content: center;
    }

    .disclaimer-content {
        text-align: left;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .age-popup-content {
        padding: 25px;
        margin: 20px;
    }

    .age-popup-header h2 {
        font-size: 1.4rem;
    }

    .footer-warning {
        flex-direction: column;
        gap: 5px;
    }

    .disclaimer-section {
        padding: 30px 0;
    }
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 100px 0 80px;
    background: white;
    min-height: 70vh;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-title span {
    color: #6b7280;
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title h2 {
    color: #1f2937;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.nav-menu a.active {
    color: #2563eb;
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Contact Form Styles */
.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: #2563eb;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
    font-size: 16px;
    font-weight: 400;
}

.contact-form input.subject {
    border-bottom-color: #374151;
    margin-bottom: 0;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.error-message {
    color: #dc2626;
    font-size: 14px;
    margin-top: 5px;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

.submit-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.submit-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Contact Info Box */
.info-box {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: sticky;
    top: 120px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    filter: invert(38%) sepia(100%) saturate(1779%) hue-rotate(212deg) brightness(98%) contrast(95%);
}

.contact-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    text-align: left;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-details li:last-child {
    margin-bottom: 0;
}

.contact-details li img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    filter: invert(38%) sepia(100%) saturate(1779%) hue-rotate(212deg) brightness(98%) contrast(95%);
    flex-shrink: 0;
}

.contact-details li span {
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
    font-size: 14px;
}

/* Thank You Popup */
.thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(5px);
}

.thank-you-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: thankYouSlide 0.5s ease;
}

@keyframes thankYouSlide {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.thank-you-header {
    margin-bottom: 25px;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    filter: invert(34%) sepia(100%) saturate(1467%) hue-rotate(88deg) brightness(96%) contrast(96%);
}

.thank-you-header h3 {
    color: #1f2937;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.thank-you-body p {
    color: #4b5563;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.thank-you-body strong {
    color: #059669;
}

.thank-you-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px auto 0;
}

.thank-you-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
}

.thank-you-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Form Validation States */
.form-group.error input,
.form-group.error textarea {
    border-bottom-color: #dc2626;
}

.form-group.success input,
.form-group.success textarea {
    border-bottom-color: #10b981;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .info-box {
        position: static;
    }

    .contact-details li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-details li img {
        margin: 0 auto;
    }

    .thank-you-content {
        padding: 30px 20px;
        margin: 20px;
    }
}