/* styles.css */

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

h1, h2, h3 {
    color: #444;
}

/* General reset */
body, h1, h2, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f9fc;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Header styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #4a4a4a;
    border-bottom: 2px solid #dfe7f1;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #709fb0;
}

/* Menu styling */
.nav .menu {
    display: flex;
    list-style: none;
}

.nav .menu li {
    margin-left: 1.5rem;
}

.nav .menu li a {
    color: #709fb0;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    transition: background-color 0.3s, transform 0.3s;
}

.nav .menu li a:hover {
    background-color: #eaf4f8;
    color: #4a4a4a;
    transform: scale(1.1);
}

.nav .menu li a:active {
    background-color: #d6eaf5;
    color: #4a4a4a;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    background: #709fb0;
    height: 3px;
    margin: 4px 0;
    width: 25px;
}


/* Hero section styling */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
    background: linear-gradient(135deg, #d6eaf5, #eaf4f8);
    color: #4a4a4a;
    border-radius: 20px;
    margin: 1rem;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
}

.hero .intro h2 {
    font-size: 2.5rem;
    color: #709fb0;
}

.hero .intro p {
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #4a4a4a;
}


/* TopBoxMenu section styling */
.topboxmenu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
    text-align: center;
    background: linear-gradient(135deg, #d6eaf5, #eaf4f8);
    color: #4a4a4a;
    border-radius: 20px;
    margin: 1rem;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
}

.topboxmenu .intro h2 {
    font-size: 2.5rem;
    color: #709fb0;
}

.topboxmenu .intro p {
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #4a4a4a;
}


/* Curvitae section styling */
.curvitae {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    background: linear-gradient(135deg, #d6eaf5, #eaf4f8);
    color: #4a4aff;
    border-radius: 20px;
    margin: 3rem;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
}

.curvitae .intro h2 {
    font-size: 2.5rem;
    color: #709fC8;
}

.curvitae .intro p {
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #4a4aff;
}




.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #709fb0;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: background 0.3s, transform 0.3s;
}

.cta-button:hover {
    background: #5a87a3;
    transform: scale(1.05);
}

/* GDPR Banner */
.gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #d6eaf5;
    padding: 1rem;
    text-align: center;
    box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.1);
}

.gdpr-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.gdpr-banner a {
    color: #709fb0;
    text-decoration: underline;
    margin-left: 0.5rem;
}

.gdpr-banner button {
    background: #709fb0;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 0.5rem;
}

.gdpr-banner button:hover {
    background: #5a87a3;
}

/* Contact section */
footer {
    padding: 1rem;
    background: #ffffff;
    border-top: 2px solid #dfe7f1;
    text-align: center;
    border-radius: 20px 20px 0 0;
    margin-top: 1rem;
}

footer p {
    margin: 0.5rem 0;
}

footer a {
    color: #709fb0;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav .menu {
        display: none;
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 60px;
        right: 10px;
        width: 200px;
        border-radius: 10px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav .menu li {
        margin: 1rem 0;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}



header.info-header {
    background-color: #e8f0fe;
    text-align: center;
    padding: 2rem 1rem;
    border-bottom: 3px solid #a8c8e8;
}

header.info-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header.info-header p {
    font-size: 1.2rem;
}

main.info-main {
    padding: 2rem 1rem;
}

.service-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-section h2 {
    margin-bottom: 1rem;
    color: #0056b3;
    text-align: center;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-item {
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    background-color: #e8f7ff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    margin-bottom: 0.5rem;
    color: #444;
}

footer.info-footer {
    text-align: center;
    background-color: #e8f0fe;
    padding: 1rem 0;
    margin-top: 2rem;
    border-top: 3px solid #a8c8e8;
    color: #666;
    font-size: 0.9rem;
}

#captcha-container {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}

#captcha-answer {
    width: 100px;
    margin-right: 10px;
}

#contact-details {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #4CAF50;
    border-radius: 10px;
    background-color: #e8f5e9;
    font-weight: bold;
}