/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
    background-color: #1a1a2e;
    color: #ffffff;
    direction: rtl;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Navigation Styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e94560;
}

.logo-container i {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: #e94560;
    color: #ffffff;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
}

/* Container Adjustments */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 110px;
}

.name {
    font-size: 3rem;
    color: #e94560;
    margin-bottom: 1rem;
    margin-top: 0;
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
    font-family: 'Cairo', sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
}

.title {
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 0.9;
}

/* Social Cards */
.social-section {
    margin: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e94560;
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.3);
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
    width: 100%;
}

.social-card {
    position: relative;
    width: 100%;
    background: rgba(44, 62, 80, 0.9);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.3s ease, background 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(233, 69, 96, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-card:hover .card-glow {
    opacity: 1;
}

.social-card:hover {
    box-shadow: 0 0 30px #e94560aa;
    background: rgba(255, 255, 255, 0.1);
    border-color: #e94560;
    transform: none !important;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #e94560;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.social-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Config Cards */
.config-section {
    margin: 4rem 0;
}

.config-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
    width: 100%;
}

.config-card {
    position: relative;
    width: 100%;
    background: rgba(44, 62, 80, 0.9);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.config-card:hover {
    transform: translateY(-5px);
    border-color: #e94560;
    background: rgba(255, 255, 255, 0.1);
}

.config-header {
    text-align: center;
    margin-bottom: 2rem;
}

.config-icon {
    font-size: 2.5rem;
    color: #e94560;
    margin-bottom: 1rem;
}

.config-content {
    text-align: center;
}

.price {
    font-size: 2.5rem;
    color: #e94560;
    margin-bottom: 0.5rem;
}

.duration {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features i {
    color: #e94560;
}

.config-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.discord-note i {
    color: #e94560;
}

/* Info Cards */
.info-section {
    margin: 4rem 0;
}

.info-card {
    background: rgba(44, 62, 80, 0.9);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: #e94560;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    font-size: 28px;
}

.info-content {
    padding: 15px;
}

.info-step {
    margin-bottom: 25px;
    border-right: 3px solid #e94560;
    padding-right: 15px;
}

.step-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.step-desc {
    color: #b3b3b3;
    line-height: 1.6;
}

.steps-list, .features-list {
    padding-right: 20px;
    margin: 15px 0;
}

.steps-list li, .features-list li {
    color: #b3b3b3;
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
}

.steps-list {
    counter-reset: step-counter;
}

.info-note {
    background: rgba(233, 69, 96, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.info-note p {
    color: #e94560;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header {
        margin-top: 90px;
    }

    .name {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
        overflow-x: hidden;
    }

    body, html {
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }
    
    main {
        padding-top: 60px;
    }

    .info-card {
        padding: 15px;
    }
    
    .info-card h3 {
        font-size: 20px;
    }
    
    .step-title {
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-card,
.config-card,
.info-card {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Monologues Section */
.monologues {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.monologues h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.monologue-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.monologue-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.monologue-form textarea {
    width: 100%;
    height: 200px;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: vertical;
}

.submit-btn {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.monologue-display {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.products {
    padding: 5rem 2rem;
    background-color: #f5f6fa;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.product-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-item i {
    color: #3498db;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.social-card,
.config-card,
.info-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Enhanced Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00d4ff, #4ecdc4, #ff6b6b);
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b, #00d4ff);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Mobile scrollbar */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 6px;
    }
    
    ::-webkit-scrollbar-thumb {
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Products Section */
.products-section {
    margin: 4rem 0;
    padding: 2rem;
}

.products-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.product-card {
    background: rgba(44, 62, 80, 0.9);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 10px;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-details {
    text-align: right;
}

.product-details h3 {
    color: #e94560;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-details p {
    color: #b3b3b3;
    margin-bottom: 15px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.product-specs span {
    background: rgba(233, 69, 96, 0.1);
    color: #e94560;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-price {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
}

.buy-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e94560;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.buy-button:hover {
    background: #d63d57;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .product-card {
        padding: 1rem;
    }

    .product-image {
        height: 180px;
    }

    .product-details h3 {
        font-size: 1.2rem;
    }

    .product-price {
        font-size: 1.5rem;
    }
}

/* Main content styles */
main {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    padding-top: 80px;
}

/* Contact Page Styles */
.contact-hero {
    text-align: center;
    padding: 60px 0;
    background: rgba(44, 62, 80, 0.3);
    border-radius: 15px;
    margin-bottom: 40px;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #e94560;
    margin-bottom: 15px;
}

.contact-hero .subtitle {
    font-size: 1.2rem;
    color: #b3b3b3;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 0;
}

.social-links-section h2,
.faq-section h2,
.support-section h2 {
    color: #e94560;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.social-card {
    background: rgba(44, 62, 80, 0.9);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.social-card.discord i { color: #7289da; }
.social-card.youtube i { color: #ff0000; }
.social-card.tiktok i { color: #00f2ea; }

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.social-card p {
    color: #b3b3b3;
    margin-bottom: 15px;
}

.social-card span {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-card.discord span { background: #7289da; }
.social-card.youtube span { background: #ff0000; }
.social-card.tiktok span { background: #00f2ea; }

.faq-list {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: rgba(44, 62, 80, 0.9);
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h3 {
    color: #e94560;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #b3b3b3;
    line-height: 1.6;
}

.support-card {
    background: rgba(44, 62, 80, 0.9);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.support-card i {
    font-size: 3rem;
    color: #e94560;
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.support-card p {
    color: #b3b3b3;
    margin-bottom: 25px;
}

.support-button {
    display: inline-block;
    padding: 12px 30px;
    background: #e94560;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.support-button:hover {
    background: #d63d57;
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .social-card,
    .faq-item,
    .support-card {
        padding: 20px;
    }
}

/* Image Styles */
.hero {
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
}

.logo img {
    height: 50px;
    width: auto;
}

.social-card {
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.9);
    z-index: 1;
}

.social-card.youtube {
    background-image: url('images/social/youtube-card.jpg');
    background-size: cover;
}

.social-card.tiktok {
    background-image: url('images/social/tiktok-card.jpg');
    background-size: cover;
}

.social-card.discord {
    background-image: url('images/social/discord-card.jpg');
    background-size: cover;
}

.social-card > * {
    position: relative;
    z-index: 2;
}

.config-section {
    position: relative;
}

.config-we {
    background-image: url('images/config/we-banner.jpg');
    background-size: cover;
    background-position: center;
}

.config-vodafone {
    background-image: url('images/config/vodafone-banner.jpg');
    background-size: cover;
    background-position: center;
}

.support-section {
    background-image: url('images/contact/support-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.9);
}

.faq-section {
    background-image: url('images/contact/faq-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.9);
}

/* Product Images */
.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Contact Page Specific Styles */
.contact-section {
    margin: 2rem 0;
}

.contact-grid {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

/* FAQ Section Styles */
.faq-section {
    margin: 3rem 0;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: rgba(44, 62, 80, 0.9);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #e94560;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.faq-item h3 {
    color: #e94560;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h3 i {
    font-size: 1.1rem;
    color: #4ecdc4;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Support Section Styles */
.support-section {
    margin: 3rem 0;
}

.support-card {
    background: rgba(44, 62, 80, 0.9);
    border-radius: 18px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(233, 69, 96, 0.1), rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-card:hover::before {
    opacity: 1;
}

.support-card:hover {
    border-color: #e94560;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.3);
}

.support-icon {
    font-size: 4rem;
    color: #e94560;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.support-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.support-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.support-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #e94560, #ff6b6b);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.support-button:hover {
    background: linear-gradient(45deg, #ff6b6b, #e94560);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.4);
}

.support-button i {
    font-size: 1.2rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        gap: 2rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .support-card {
        padding: 2rem 1.5rem;
    }
    
    .support-card h3 {
        font-size: 1.5rem;
    }
    
    .support-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 2rem auto;
    }
} 
