/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa; /* Very light subtle grey background for depth */
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Logo */
.header {
    margin-bottom: 3rem;
    text-align: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.05em;
    user-select: none;
}

.logo-suffix {
    color: #666; /* Softer grey for .net */
    font-weight: 300;
}

/* Countries Grid */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3x2 Grid on Desktop */
    gap: 1.5rem;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 800px;
}

.country-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    cursor: default; /* Changed to default as not currently clickable links, but looks interactive */
}

/* Hover Effect */
.country-card:hover {
    transform: translateY(-5px); /* Lift up */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.flag-icon {
    width: 48px;
    height: auto;
    border-radius: 4px; /* Slight rounding on flags */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.country-name {
    font-weight: 500;
    font-size: 1.1rem;
    color: #2d3748;
}

/* Info Text */
.info-text {
    text-align: center;
    max-width: 600px;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.info-text h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.info-text p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Area */
.contact-area {
    margin-bottom: 2rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #2b6cb0; /* Professional blue tone */
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.contact-email:hover {
    color: #2c5282;
    background-color: rgba(43, 108, 176, 0.05);
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

/* Footer */
.footer {
    padding: 2rem;
    background-color: #f1f2f4;
    text-align: center;
    width: 100%;
    margin-top: auto; /* Push to bottom if content is short */
}

.footer p {
    font-size: 0.875rem; /* Small font size */
    color: #718096;
}

.company-link {
    color: #2d3748;
    font-weight: 700; /* Bold */
    text-decoration: none;
    transition: color 0.2s;
}

.company-link:hover {
    color: #000;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .logo {
        font-size: 2rem;
    }

    .countries-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x3 Grid on Tablet/Mobile */
        gap: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .countries-grid {
        /* Optional: Could go to 1 column for very small screens, but 2 usually works for flags */
        grid-template-columns: repeat(2, 1fr); 
    }

    .info-text h2 {
        font-size: 1.5rem;
    }
    
    .contact-email {
        font-size: 1.1rem;
    }
}
