/* Reset and Base Styles */
@font-face {
    font-family: 'Futura Medium';
    src: url('../fonts/futura medium bt.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Heavy';
    src: url('../fonts/Futura Heavy font.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Book';
    src: url('../fonts/FuturaCyrillicBook.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Bold';
    src: url('../fonts/FuturaCyrillicBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'Futura Book', sans-serif;
    background-color: #F9F9F9;
    margin: 0;
    padding: 0;
    text-align: left;
    max-width: 1200px;
    margin: auto;
}

/* Navigation */
.nav-container {
    text-align: center;
    padding: 20px 0;
}

.logo img {
    display: block;
    margin: 0 auto;
    max-width: 220px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.nav-menu a {
    text-decoration: none;
    color: black;
    font-family: 'Futura Book', sans-serif;
    font-size: 14px;
    padding: 5px 10px;
    transition: 0.3s;
}

.nav-menu a.active {
    border-bottom: 2px solid #C5519C;
}

.nav-menu a:hover {
    color: #8CCD61;
}

/* Hero Section */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 60px;
    max-width: 80%;
    margin: 0 auto;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.hero-text {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Futura Book', sans-serif;
    line-height: 1.2;
}

.hero-text p {
    margin-bottom: 4px;
    padding-bottom: 0px;
}

h3 {
    font-family: 'Futura Bold', sans-serif;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

h2 {
    font-family: 'Futura Book', sans-serif;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 20px;
}

.services-hero .hero-text p {
    margin-bottom: 4px;
    padding-bottom: 0px;
}

.services-hero .hero-image img {
    max-height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 12px;
    max-width: 100%;
}

.services-hero .hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 60px;
    max-width: 80%;
    margin: 0 auto;
}
.services-section {
    text-align: center;
    padding: 60px 20px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    max-width: 1100px;
    margin: auto;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-card img {
    width: 100%;
    height: auto;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    object-fit: cover;
}

.service-card h3 {
    font-family: 'Futura Bold', 'Arial', sans-serif !important;
    margin-top: 12px;
}

.service-card p {
    font-family: 'Futura Book', 'Arial', sans-serif !important;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

.service-button {
    display: inline-block;
    margin-top: 10px;
    background-color: #C5519C;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.service-button:hover {
    background-color: #8CCD61;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .hero-image img {
        width: 100%;
        max-height: 300px;
    }
    .hero-text {
        max-width: 100%;
        text-align: left;
    }
    .services-container {
        grid-template-columns: 1fr;
    }
}
/* Contact Section Styling */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background-color: #F9F9F9;
}

.contact-container {
    background: #FFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.contact-container h2 {
    color: #C5519C;
    font-size: 22px;
    font-family: 'Futura Bold', sans-serif;
    margin-bottom: 10px;
}

.contact-container p {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Futura Book', sans-serif;
    font-size: 16px; 
    color: #333; 
    font-size: 16px;
}

textarea {
    height: 120px;
    resize: vertical;
}

.form-button {
    font-family: 'Futura Bold', sans-serif;
    font-size: 16px; 
    background: #C5519C; 
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    font-weight: bold;
}

.form-button:hover {
    background: #8CCD61;
}

.footer-logo {
    height: 20px; /* Reduce size */
    width: auto;
}
.cta-button {
    display: inline-block;
    margin-top: 15px;
    background-color: #C5519C; /* Match branding */
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    font-family: 'Futura Bold', sans-serif;
    text-align: center;
}

.cta-button:hover {
    background-color: #8CCD61; /* Match hover state */
}