/* General Styling */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Top Bar CSS */
.top-bar {
    background-color: #6B0034; /* Website theme color for background */
    color: #ffffff; /* White text for contrast */
    padding: 10px 20px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar span {
    color: #ffffff; /* Ensure text remains readable on dark background */
    margin: 0 10px;
    white-space: nowrap;
}

.top-bar a {
    color: #ffd1e8; /* Complementary light pink for links */
    text-decoration: none;
    font-weight: bold;
}

.top-bar a:hover {
    color: #ffffff; /* Link color on hover */
    text-decoration: underline;
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar span {
        margin-bottom: 5px;
    }
}

/* General Navbar Styling */
.main-menu {
    background-color: #333333; /* Dark gray background */
    color: #ffffff; /* White text */
    font-family: Arial, sans-serif;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.main-menu .container {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Align logo, links, and contact info vertically */
}

/* Logo Section */
.logo h1 {
    margin: 0;
    font-size: 24px;
    color: #ffffff; /* White for primary logo text */
    font-weight: bold;
}

.logo p {
    margin: 0;
    font-size: 12px;
    color: #aaaaaa; /* Light gray for subtitle */
    font-style: italic;
}

/* Navigation Links Section */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px; /* Space between links */
    padding: 0;
    margin: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff; /* White text for links */
    font-weight: bold;
    font-size: 14px;
    padding: 5px 0;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 2px solid transparent; /* Underline effect */
}

.nav-links a:hover {
    color: #f0e68c; /* Light yellow on hover */
    border-bottom: 2px solid #f0e68c; /* Light yellow underline on hover */
}

/* Contact Info Section */
.contact-info {
    display: flex;
    align-items: center; /* Align text and button vertically */
    gap: 15px;
    font-size: 14px;
}

.contact-info span {
    font-weight: bold;
    color: #ffffff; /* White text */
}

.contact-info .whatsapp-button {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    color: #ffffff; /* White text */
    background-color: #25D366; /* WhatsApp green */
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.contact-info .whatsapp-button i {
    margin-right: 5px;
    font-size: 16px;
}

.contact-info .whatsapp-button:hover {
    background-color: #1DA851; /* Darker green on hover */
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-menu .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Header Section */
.header-image {
    background-color: #fdf0f5; /* Light pink background to match magenta text */
    padding: 50px 20px;
    text-align: center;
    color: #6B0034; /* Magenta for main text */
    position: relative;
    overflow: hidden;
}

.header-image .overlay {
    padding: 30px;
    border-radius: 10px;
}

.header-logo {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.header-content h1 {
    font-size: 36px;
    font-weight: bold;
    color: #6B0034; /* Magenta for title */
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.header-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4d0030; /* Darker magenta for description text */
    margin-bottom: 30px;
}

.header-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
}

.header-buttons .btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

/* Button Styles */
.phone-btn {
    background-color: #6B0034; /* Magenta for Phone Us */
    color: #ffffff; /* White text */
    border: 2px solid #6B0034;
}

.phone-btn:hover {
    background-color: transparent;
    color: #6B0034; /* Magenta on hover */
    border: 2px solid #6B0034;
}

.chat-btn {
    background-color: #25D366; /* WhatsApp green for Let's Chat */
    color: #ffffff; /* White text */
    border: 2px solid #25D366;
}

.chat-btn:hover {
    background-color: transparent;
    color: #25D366; /* Green on hover */
    border: 2px solid #25D366;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-image {
        padding: 30px 15px;
    }

    .header-content h1 {
        font-size: 28px;
    }

    .header-content p {
        font-size: 14px;
    }

    .header-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* Content Section */
.content-section {
    background-color: #ffffff; /* Pure white background */
    color: #6B0034; /* Magenta for text */
    padding: 50px 20px;
    width: 100%; /* Ensure it spans the full width of the site */
    box-sizing: border-box; /* Includes padding in width */
}

.content-section .container {
    max-width: 1200px; /* Limit content width for readability */
    margin: 0 auto; /* Center the content */
    text-align: center; /* Align text to the left for a professional look */
}

.content-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #6B0034; /* Magenta for heading */
    margin-bottom: 20px;
    text-align: center; /* Center the heading */
    font-family: 'Arial', sans-serif;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4d0030; /* Darker magenta for body text */
    margin-bottom: 30px;
    text-align: center; /* Justified text for a clean look */
    font-family: 'Arial', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-section {
        padding: 30px 15px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section p {
        font-size: 14px;
        line-height: 1.6;
    }
}


/* Model Container */
/* General Styles */
.models-section {
    background-color: #ffffff; /* White background */
    padding: 50px 20px;
    display: flex;
    gap: 20px;
    font-family: Arial, sans-serif;
}

/* Main Content */
.main-content {
    flex: 3; /* Occupies 75% of the section */
}

.right-sidebar {
    flex: 1; /* Occupies 25% of the section */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Models Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two models in a row */
    gap: 20px;
}

/* Model Card */
.model-card {
    background-color: #f9f9f9; /* Light gray background */
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.model-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.model-details {
    padding: 15px;
    text-align: center;
}

.model-details h3 {
    font-size: 16px;
    color: #6B0034; /* Magenta color for names */
    margin-bottom: 10px;
}

.model-details p {
    font-size: 14px;
    color: #555; /* Gray for details */
    margin: 5px 0;
}

/* Profile Button */
.profile-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #6B0034; /* Magenta background */
    color: #ffffff; /* White text */
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.profile-btn:hover {
    background-color: #a8004b; /* Darker magenta on hover */
    transform: scale(1.05);
}


/* Model of the Week Section */
.model-of-week {
    background-color: #ffffff; /* White background */
    border: 1px solid #e0e0e0; /* Light border */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    overflow: hidden;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Title */
.model-week-title {
    font-size: 18px;
    color: #6B0034; /* Magenta for heading */
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #6B0034; /* Underline for emphasis */
    padding-bottom: 5px;
}

/* Content Wrapper */
.model-week-content {
    text-align: center;
}

/* Model Image */
.model-of-week img {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin: 0 auto 15px; /* Spacing below the image */
    border-radius: 10px;
    object-fit: cover; /* Ensure proper cropping */
}

/* Model Details */
.model-week-details h3 {
    font-size: 20px;
    color: #6B0034; /* Magenta for the name */
    margin-bottom: 10px;
}

.model-week-details p {
    font-size: 14px;
    color: #555; /* Gray for secondary details */
    margin: 5px 0;
    line-height: 1.5;
}

/* Profile Button */
.profile-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #6B0034; /* Magenta background */
    color: #ffffff; /* White text */
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.profile-btn:hover {
    background-color: #a8004b; /* Darker magenta */
    transform: scale(1.05); /* Subtle zoom on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .model-of-week img {
        max-width: 100%; /* Ensure responsiveness */
        height: auto;
    }

    .model-week-title {
        font-size: 16px;
    }

    .model-week-details h3 {
        font-size: 18px;
    }

    .model-week-details p {
        font-size: 13px;
    }
}


/* Recommended Links */
.recommended-links {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.recommended-links h3 {
    font-size: 16px;
    color: #6B0034; /* Magenta */
    margin-bottom: 15px;
}

.recommended-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommended-links li {
    margin-bottom: 10px;
}

.recommended-links a {
    color: #6B0034; /* Magenta links */
    text-decoration: none;
    font-size: 14px;
}

.recommended-links a:hover {
    text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 models in a row on medium screens */
    }

    .main-content {
        width: 100%; /* Full width for smaller screens */
    }

    .right-sidebar {
        width: 100%; /* Stack sidebar below main content */
    }
}

@media (max-width: 768px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 models in a row on small screens */
    }

    .models-section {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .models-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 model per row on extra-small screens */
    }
}

/* Reviews Section */
.reviews-section {
    background-color: #fdf0f5; /* White background for contrast */
    padding: 50px 20px;
    font-family: Arial, sans-serif;
}

.reviews-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #6B0034; /* Magenta for the heading */
    text-align: center;
    margin-bottom: 30px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two reviews per row */
    gap: 20px;
}

.review-card {
    display: flex;
    background-color: #f9f9f9; /* Light gray for card background */
    border: 1px solid #ddd; /* Subtle border */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.review-card img {
    width: 150px;
    height: auto;
    object-fit: cover;
    border-right: 1px solid #ddd;
}

.review-content {
    padding: 20px;
    flex-grow: 1;
}

.review-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #6B0034; /* Magenta for names */
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    color: #ff4d4d; /* Red for stars */
    font-size: 16px;
    font-weight: bold;
}

.review-content p {
    font-size: 14px;
    color: #333; /* Dark gray for text */
    margin-bottom: 10px;
    line-height: 1.6;
}

.review-meta {
    font-size: 12px;
    color: #666; /* Lighter gray for meta info */
}

.review-meta span {
    margin: 0 5px;
}

.see-all-btn {
    display: block;
    margin: 20px auto 0;
    width: max-content;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    color: #6B0034; /* Magenta for button text */
    border: 2px solid #6B0034;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.see-all-btn:hover {
    background-color: #6B0034; /* Magenta background on hover */
    color: #ffffff; /* White text on hover */
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, #6B0034, #a50052); /* Gradient background using magenta shades */
    padding: 10px 10px; /* Reduced top and bottom padding */
    text-align: center;
    font-family: Arial, sans-serif;
    color: #ffffff; /* White text color for contrast */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Subtle shadow for depth */
}

.booking-logo {
    width: 100px;
    height: auto;
    margin-bottom: 15px; /* Reduced margin below the logo */
    border-radius: 50%; /* Circular logo */
    background-color: #ffffff; /* White background for logo */
    padding: 10px;
}

.booking-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px; /* Reduced spacing below heading */
    color: #ffffff; /* White text */
}

.booking-number {
    font-size: 20px;
    font-weight: bold;
    color: #ffe4f0; /* Soft pink for phone number */
    margin-bottom: 10px;
}

.booking-description {
    font-size: 16px;
    color: #f9d7e8; /* Lighter pink for description text */
    margin-bottom: 15px; /* Reduced spacing below description */
    line-height: 1.6;
}

.booking-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #6B0034; /* Magenta text */
    background-color: #ffffff; /* White background */
    border: 2px solid #ffffff; /* White border */
    border-radius: 30px; /* Rounded button */
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.booking-btn:hover {
    background-color: #ffe4f0; /* Soft pink background on hover */
    color: #6B0034; /* Magenta text on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
    border-color: #ffe4f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-section {
        padding: 20px 15px; /* Further reduced padding for small screens */
    }

    .booking-section h2 {
        font-size: 24px;
    }

    .booking-number {
        font-size: 18px;
    }

    .booking-description {
        font-size: 14px;
        margin-bottom: 10px; /* Reduced spacing below description */
    }

    .booking-btn {
        font-size: 14px;
        padding: 10px 25px;
    }
}

/* Service Section */
.service-section {
    background-color: #fdf0f5; /* Light pink background to match magenta text */
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    color: #333333; /* Dark gray for text */
}

.service-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #6B0034; /* Magenta for the heading */
    text-align: center;
    margin-bottom: 20px;
}

.service-section .service-description {
    font-size: 16px;
    color: #555555; /* Medium gray for description text */
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three services per row */
    gap: 20px; /* Space between service cards */
}

.service-card {
    background-color: #f9f9f9; /* Light gray background for cards */
    border: 1px solid #ddd; /* Subtle border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    overflow: hidden; /* Ensure content fits within the card */
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

.service-card img {
    width: 100%;
    height: 200px; /* Standard height for images */
    object-fit: cover; /* Maintain aspect ratio and fill space */
    border-bottom: 1px solid #ddd; /* Separator line */
}

.service-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #6B0034; /* Magenta for service titles */
    margin: 15px 20px 10px;
    text-align: left;
}

.service-card p {
    font-size: 14px;
    color: #555555; /* Medium gray for description text */
    margin: 0 20px 20px;
    line-height: 1.6;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr); /* Two services per row on tablets */
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr; /* One service per row on mobile */
    }

    .service-section .service-description {
        margin-bottom: 20px;
    }
}

/* Payment Section */
.payment-section {
    background-color: #fdf0f5; /* Light pink background to match magenta text */
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
    color: #333333; /* Dark gray for text */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.payment-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #6B0034; /* Magenta for the heading */
    margin-bottom: 20px;
}

.payment-section p {
    font-size: 16px;
    color: #555555; /* Medium gray for description text */
    margin-bottom: 30px;
    line-height: 1.6;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between icons */
    flex-wrap: wrap; /* Allows icons to wrap on smaller screens */
}

.payment-icons img {
    width: 100px;
    height: 50px; /* Standardized icon size */
    object-fit: contain; /* Ensures icons are proportionally scaled */
    border: 1px solid #ddd; /* Light border around icons */
    border-radius: 5px; /* Rounded edges for icons */
    padding: 10px; /* Padding inside icons */
    background-color: #f9f9f9; /* Light gray background for icons */
    transition: transform 0.3s, box-shadow 0.3s; /* Hover effects */
}

.payment-icons img:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-section {
        padding: 30px 15px;
    }

    .payment-section h2 {
        font-size: 28px;
    }

    .payment-section p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .payment-icons img {
        width: 80px;
        height: 40px; /* Adjust icon size for smaller screens */
    }
}

/* Footer Section */
.exact-footer-section {
    background-color: #6B0034; /* Magenta background */
    color: #ffffff; /* White text */
    padding: 50px 20px;
    font-family: Arial, sans-serif;
}

.exact-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Top Section */
.exact-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.exact-footer-contact {
    flex: 1;
    min-width: 300px;
}

.exact-footer-contact h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.exact-footer-contact p {
    margin: 10px 0;
    color: #ffe4f0; /* Light pink text */
    font-size: 14px;
}

.exact-footer-contact a {
    color: #ffd1e8; /* Lighter magenta-pink for links */
    text-decoration: none;
    font-weight: bold;
}

.exact-footer-contact a:hover {
    text-decoration: underline;
}

.exact-telegram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    color: #6B0034; /* Magenta text */
    background-color: #ffffff; /* White button */
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.exact-telegram-btn i {
    margin-right: 8px;
}

.exact-telegram-btn:hover {
    background-color: #ffd1e8; /* Light pink hover */
    transform: scale(1.05);
}

/* Vertical Divider Between Contact and Form */
.exact-footer-vertical-line {
    width: 1px;
    background-color: #ffffff; /* White line */
    opacity: 0.5;
    height: 100%; /* Full height of the parent container */
    margin: 0 20px;
}

/* Footer Top Section */
.exact-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.exact-footer-contact,
.exact-footer-form {
    flex: 1;
    min-width: 300px;
}

/* Contact Form */
.exact-footer-form {
    flex: 1;
    min-width: 300px;
}

.exact-footer-form h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

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

.exact-footer-form label {
    margin-bottom: 5px;
    color: #ffe4f0; /* Light pink for labels */
    font-size: 14px;
}

.exact-footer-form input,
.exact-footer-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ffd1e8; /* Light pink border */
    background-color: #6B0034; /* Magenta background */
    color: #ffffff; /* White text */
    border-radius: 5px;
    font-size: 14px;
}

.exact-footer-form textarea {
    height: 80px;
    resize: none;
}

.exact-send-btn {
    background-color: #ffffff; /* White button */
    color: #6B0034; /* Magenta text */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.exact-send-btn:hover {
    background-color: #ffd1e8; /* Light pink hover */
    transform: scale(1.05);
}

.exact-footer-form p {
    font-size: 12px;
    color: #ffe4f0; /* Light pink for policy text */
}

.exact-footer-form p a {
    color: #ffd1e8; /* Lighter magenta-pink link */
    text-decoration: none;
}

.exact-footer-form p a:hover {
    text-decoration: underline;
}

/* Horizontal Line */
.exact-horizontal-line {
    height: 1px;
    background-color: #ffffff; /* White line */
    opacity: 0.5;
    margin: 20px 0;
}

/* Links Section */
/* Footer Links Section */
.exact-footer-links nav {
    display: flex;
    justify-content: space-between; /* Add space between links */
    gap: 30px; /* Increase spacing between items */
    flex-wrap: wrap;
    padding: 0 20px; /* Add padding for spacing */
}

.exact-footer-links a {
    color: #ffd1e8; /* Lighter magenta-pink links */
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-align: center; /* Center align text */
}

.exact-footer-links a:hover {
    text-decoration: underline;
}


/* Bottom Section */
.exact-footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #ffe4f0; /* Light pink for bottom text */
}

.exact-footer-bottom a {
    color: #ffd1e8; /* Lighter magenta-pink links */
    text-decoration: none;
}

.exact-footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .exact-footer-top {
        flex-direction: column;
    }

    .exact-footer-contact,
    .exact-footer-form {
        width: 100%;
    }

    .exact-footer-vertical-line {
        display: none;
    }

    .form-row {
        flex-direction: column;
    }
}
