* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overscroll-behavior: none;
    background: #fff1f3;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: #fff1f3;
    min-height: 100vh;
    padding: 20px;
    color: #1a1714;
    line-height: 1.6;
    overscroll-behavior-y: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

header {
    text-align: center;
    color: #33302e;
    margin-bottom: 60px;
    padding-top: 40px;
    border-bottom: 1px solid #33302e;
    padding-bottom: 30px;
}


header h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: -0.5px;
}

header p {
    font-size: 1.1em;
    color: #66605c;
    font-weight: 400;
}

.section-title {
    color: #33302e;
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: Georgia, 'Times New Roman', serif;
}

.section-title p {
    font-size: 1em;
    color: #66605c;
}

.companies-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
    justify-content: center;
}

.company-card {
    background: #fde8ec;
    padding: 40px;
    border: 1px solid #f4c6d0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.company-card:hover {
    border-color: #33302e;
    box-shadow: 0 2px 8px rgba(51, 48, 46, 0.1);
}


.company-logo {
    width: 100px;
    height: 100px;
    background: #33302e;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.2em;
    font-weight: 600;
    margin: 0 auto 25px;
    font-family: Georgia, 'Times New Roman', serif;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.company-logo:has(img) {
    background: #fef5f7;
    border: 1px solid #f4c6d0;
    width: 120px;
    height: 80px;
    min-height: 80px;
    max-width: 120px;
    padding: 10px;
}

.company-name {
    font-size: 1.5em;
    font-weight: 600;
    color: #33302e;
    margin-bottom: 12px;
    font-family: Georgia, 'Times New Roman', serif;
}

.company-vat {
    color: #66605c;
    font-size: 0.95em;
    margin-bottom: 8px;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

.company-website {
    color: #0066cc;
    font-size: 0.9em;
    margin-bottom: 25px;
}

.access-btn {
    display: inline-block;
    background: #33302e;
    color: white;
    padding: 12px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.2s;
    border: 2px solid #33302e;
    cursor: pointer;
    width: 100%;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: 0.5px;
}

.access-btn:hover {
    background: #fff1f3;
    color: #33302e;
    border-color: #33302e;
}

.loading {
    text-align: center;
    padding: 60px;
    color: #66605c;
    font-size: 1em;
}

.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid #f4c6d0;
    border-radius: 50%;
    border-top-color: #33302e;
    animation: spin 0.8s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

footer {
    text-align: center;
    color: #66605c;
    padding: 40px 20px;
    border-top: 1px solid #f4c6d0;
    margin-top: 40px;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    filter: none;
    background: transparent;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    body {
        padding: 15px;
    }

    .container {
        max-width: 100%;
    }

    header {
        padding: 25px 20px;
        padding-bottom: 25px;
    }

    header h1 {
        font-size: 2.2em;
    }

    .companies-grid {
        gap: 20px;
    }

    .company-card {
        padding: 35px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
        font-size: 15px;
    }

    header {
        padding: 20px 15px;
        padding-bottom: 20px;
        margin-bottom: 40px;
    }

    header h1 {
        font-size: 1.8em;
        margin-bottom: 12px;
    }

    header p {
        font-size: 1em;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 1.5em;
    }

    .section-title p {
        font-size: 0.95em;
    }

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

    .company-card {
        padding: 25px 20px;
    }

    .company-logo {
        width: 80px;
        height: 80px;
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .company-logo:has(img) {
        width: 100px;
        height: 70px;
        max-width: 100px;
        min-height: 70px;
        padding: 10px;
    }

    .company-logo img {
        width: 100%;
        height: 100%;
    }

    .company-name {
        font-size: 1.3em;
    }

    .company-vat {
        font-size: 0.9em;
    }

    .company-website {
        font-size: 0.85em;
    }

    .access-btn {
        padding: 10px 25px;
        font-size: 0.9em;
    }

    footer {
        padding: 30px 15px;
        margin-top: 30px;
        font-size: 0.9em;
    }

    .footer-logo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 8px;
        font-size: 14px;
    }

    header {
        padding: 15px 12px;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

    header h1 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    header p {
        font-size: 0.95em;
    }

    .section-title {
        margin-bottom: 25px;
    }

    .section-title h2 {
        font-size: 1.3em;
    }

    .section-title p {
        font-size: 0.9em;
    }

    .companies-grid {
        gap: 15px;
    }

    .company-card {
        padding: 20px 15px;
    }

    .company-logo {
        width: 70px;
        height: 70px;
        font-size: 1.6em;
        margin-bottom: 15px;
    }

    .company-logo:has(img) {
        width: 90px;
        height: 65px;
        max-width: 90px;
        min-height: 65px;
        padding: 8px;
    }

    .company-logo img {
        width: 100%;
        height: 100%;
    }

    .company-name {
        font-size: 1.2em;
    }

    .company-vat {
        font-size: 0.85em;
    }

    .company-website {
        font-size: 0.8em;
        margin-bottom: 20px;
    }

    .access-btn {
        padding: 10px 20px;
        font-size: 0.85em;
    }

    footer {
        padding: 25px 12px;
        margin-top: 25px;
        font-size: 0.85em;
    }

    footer p {
        line-height: 1.8;
    }

    .footer-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
}
