/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    line-height: 1.6;
}

/* Navigation */
header {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a.linkedin-icon img {
    height: 4rem;
    display: flex;
    align-items: center;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: black;
    width: 100%;
    box-sizing: border-box;
    border-radius: 40px 40px 0 40px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.hero-image {
    flex: 0 1 40%;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 40px;
    margin-bottom: -120px;
}

.hero-text {
    flex: 1;
}

.intro {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Services Section */
.services {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-radius: 40px 0 40px 40px;
}

.services-content {
    flex: 6;
    padding: 30px;
    text-align: justify;
    margin-left: 40px;
    margin-right: 100px;
}

.services-image {
    flex: 4;
    background-color: #000;
    border-radius: 0 0 40px 40px;
}

.services-image img {
    border-radius: 40px;
    width: 70%;
    margin-bottom: 50px;
    margin-top: 100px;
    margin-left: -60px;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #000;
    padding-top: 70px;
}

h2 em {
    font-style: italic;

}

.services-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #000;
}

/* Buttons */
.cta-button {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.dark {
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content, .services {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }
}

.logo img {
    height: 35px;
}

/* Offer Section */
.offer h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.offer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 5%;
}

.offer-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    justify-content: space-between;
}

.offer-item .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.offer-item img {
    width: 100%;
    height: 300px;
    border-radius: 40px;
    object-fit: cover;
}

.offer-item h3 {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: -2px;
    color: #000;
    text-align: center;
}

.offer-p {
    color: #000;
    text-align: center;
    padding-bottom: 2rem;
    line-height: 0.8rem;
    padding-left: 10px;
    padding-right: 10px;
}

.offer-item p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1rem;
    text-align: justify;
    color: #000;
}

.offer-item ul {
    text-align: center;
    margin-bottom: 2rem;
    list-style-type: none;
    font-weight: 600;
    color: #000;
}

.offer-item ul li {
    margin-bottom: 0.5rem;
}

.offer-item .cta-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
    margin: 0 auto;
    display: block;
}

.offer-item .cta-button:hover {
    background-color: #333;
}

.cta-button.dark {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button.light {
    background-color: #ffffff;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #333;
}

/* About Section */
.about {
    padding-top: 6rem;
    text-align: center;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Optional: vertically center the content */
}

.about-image, .about-text {
    flex: 0 0 48%;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 40px;
}

.about-text {
    flex: 0 0 48%;
    text-align: left;
    color: #000;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}

.about h2 {
    padding-top: 0; /* Remove top padding */
    margin-top: 0; 
    padding-bottom: 20px;/* Remove top margin */
}

.offer-content .offer-item:nth-child(5),
.offer-content .offer-item:nth-child(6) {
    background-color: black !important;
    color: white !important; /* Optional: Change text color for better contrast */
}

/* Contact Section */
.contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%; /* Add padding similar to header */
    margin-bottom: 2rem;/* Optional: Add border radius */
}

.contact h2 {
    color: #000; /* Black text for heading */
    font-size: 2rem; /* Adjust size as needed */
    font-weight: 600;
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
}

.contact-buttons {
    display: flex;
    gap: 1rem; /* Space between buttons */
}

/* Specific button styles for contact section */
.contact .cta-button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: opacity 0.3s ease;
}

.contact .cta-button:hover {
    opacity: 0.8;
}

.contact-email {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
}

.contact-book {
    background-color: #e0e0e0; /* Light grey background */
    color: #000; /* Black text */
}

/* FAQ Section (Single Column Accordion Style) */
.faq {
    padding: 4rem 5%;
    margin-bottom: 2rem;
    background-color: #f8f9fa; /* Light background for the section */
    border-radius: 40px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #333;
    font-size: 2.2rem;
    padding-top: 0;
    margin-top: 0;
}

/* Container for the FAQ items */
.faq-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid #dee2e6; /* Separator line */
}

.faq-item:last-child {
    border-bottom: 1px solid #dee2e6; /* No line after the last item */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none; /* Transparent background */
    border: none;
    padding: 1.5rem 0; /* Vertical padding */
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #495057; /* Question text color */
}

.faq-question:hover {
    color: #000; /* Darker color on hover */
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: #6c757d; /* Icon color */
    transition: transform 0.2s ease-in-out;
}

.faq-answer {
    display: none; /* ** Hide answer by default ** */
    padding: 0 2.5rem 1.5rem 0; /* Padding below the answer text */
    color: #6c757d;    
    text-align: justify;/* Answer text color */
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Style for when the FAQ item is active/open */
.faq-item.active .faq-answer {
    display: block; /* Show answer when active */
}

.faq-item.active .faq-question {
    color: #0056b3; /* Optional: Change question color when active */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Rotates '+' to 'x' or use '−' in JS */
    /* If using arrows, you might rotate 180deg */
} 