:root {
    --primary-color: #0d2694;
    --secondary-color: #0d2694;
    --text-color: #333;
    --light-bg: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

header {
    background-color: var(--primary-color);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

main {
    margin-top: 60px;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://cdn.discordapp.com/attachments/828090026835443762/1431007288235393034/IMG_5738.png?ex=68fe7be4&is=68fd2a64&hm=df3f08a5873b41a95bd940a3fcb4e5cfbf7ce5924612fccb51a838c3ed82c0da&');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #660000;
}

.shop-button {
    background-color: #2a9d8f;
}

.shop-button:hover {
    background-color: #1e7168;
}

.campaign {
    padding: 4rem 2rem;
    background-color: white;
}

.campaign h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.campaign-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campaign-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.campaign-item a {
    display: block;
    position: relative;
}

.campaign-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.campaign-item:hover img {
    transform: scale(1.05);
}

.services {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

a.service-card:hover {
    text-decoration: none;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a.service-card h3 {
    color: var(--primary-color);
}

a.service-card p {
    color: var(--text-color);
}

.service-cta {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-cta p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.service-cta a {
    margin: 0.5rem;
}

@media (min-width: 576px) {
    .service-cta {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.about, .contact {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-content {
    text-align: left;
    margin: 0 auto;
    max-width: 900px;
}

.about-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.phone-button {
    background-color: #28a745 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.phone-button:hover {
    background-color: #218838 !important;
}

.contact-info {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 10px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.contact-info li:last-child {
    border-bottom: none;
}

.contact-info strong {
    color: var(--primary-color);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
}

.contact-buttons a {
    margin: 0.5rem;
}

@media (min-width: 576px) {
    .contact-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
}

.gdpr-notice {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gdpr-notice h3 {
    margin-bottom: 1rem;
}

.gdpr-notice ul {
    list-style-position: inside;
    margin: 1rem 0;
}

.reseller-logos {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.reseller-logos h3 {
    margin-bottom: 1.5rem;
}

.logo-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.reseller-logo-link {
    text-decoration: none;
    color: white;
    display: block;
}

.reseller-logo {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 120px;
}

.reseller-logo:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.reseller-logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
}

.reseller-logo p {
    font-weight: bold;
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-media a:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.social-media svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.social-media img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 5px;
    width: 80%;
    max-width: 1000px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
}

.service-intro {
    text-align: center;
    margin: 1rem 0;
    font-weight: bold;
}

.service-list {
    max-height: 50vh;
    overflow-y: auto;
    margin: 1rem 0;
    padding: 0 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.service-item {
    background-color: var(--light-bg);
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1rem;
    overflow: hidden;
}

.service-item h3 {
    color: var(--primary-color);
    padding: 1rem;
    margin: 0;
    cursor: pointer;
    position: relative;
}

.service-item h3:hover {
    background-color: #e9e9e9;
}

.service-info {
    padding: 0 1rem 1rem 1rem;
    display: none;
    border-top: 1px solid #e0e0e0;
}

.service-info.active {
    display: block;
}

.service-info p {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.service-info ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.service-info li {
    margin-bottom: 0.5rem;
}

.modal-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.modal-cta p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.modal-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-cta a {
    margin: 0.5rem;
}

@media (min-width: 576px) {
    .modal-cta {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
}
