/* --- Global Styles --- */
body {
    font-family: 'Poppins', sans-serif;
    /* Example font, adjust based on actual font */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    /* Dark gray for general text */
    overflow-x: hidden;
    /* Prevent horizontal scroll from background elements */
}

/* --- Variables for easy customization --- */
:root {
    --primary-red: #FF005E;
    /* Exact red from the button/logo */
    --text-dark: #232323;
    /* Darker text for headings */
    --text-medium: #555555;
    /* Medium gray for paragraphs */
    --background-light: #F8F8F8;
    /* Light background for sections if needed */
    --circle-background: #F0F8FF;
    /* Light blue/white for feature circles */
    --button-padding-x: 40px;
    --button-padding-y: 15px;
    --border-radius-large: 30px;
}

/* --- Header --- */
header {
    display: flex;
    justify-content: center;
    /* Center the logo */
    padding: 40px 0;
    /* Adjust padding as needed */
    width: 100%;
}

.img-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-container img{
    max-width: 500px;
}

.logo img {
    height: 50px;
    /* Adjust logo size */
    max-width: 100%;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 80px 5% 150px;
    /* Top, sides, bottom padding */
    text-align: left;
    /* Text is aligned left */
    overflow: hidden;
    /* Hide overflowing background shapes */
    display: flex;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    /* Adjust based on where the text breaks */
    margin-left: 10%;
    /* Or use padding on the section */
    position: relative;
    z-index: 2;
    /* Ensure content is above background shapes */
}

.hero-content h1 {
    font-size: 3.5em;
    /* Adjust font size */
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    /* Bold */
}

.hero-content p {
    font-size: 1.1em;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: var(--button-padding-y) var(--button-padding-x);
    border-radius: var(--border-radius-large);
    text-decoration: none;
    font-weight: 600;
    /* Semi-bold */
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.primary-btn {
    background-color: var(--primary-red);
    color: #FFFFFF;
    border: none;
}

.primary-btn:hover {
    background-color: #e6004b;
    /* Slightly darker red on hover */
}

/* Background Shapes/Lines for Hero Section */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* You'll need to create or find SVG for these lines, then use them as background-image */
    background-image: url('images/hero-background-lines.svg');
    /* Path to your SVG */
    background-repeat: no-repeat;
    background-position: top right;
    /* Adjust as needed */
    background-size: cover;
    /* Or contain, or specific size */
    z-index: 1;
    opacity: 0.8;
    /* Adjust opacity if needed to match image */
}

/* --- Features Section --- */
.features-section {
    padding: 100px 5%;
    text-align: center;
    background-color: #FFFFFF;
    /* White background */
}

.features-section h2 {
    font-size: 2.2em;
    /* Adjust font size */
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 600;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    /* Space between cards */
    flex-wrap: wrap;
    /* Allow cards to wrap on smaller screens */
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    /* Adjust card width */
    text-align: center;
}

.icon-circle {
    width: 180px;
    /* Adjust circle size */
    height: 180px;
    border-radius: 50%;
    background-color: var(--circle-background);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    /* Optional: add a subtle shadow */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.icon-circle img {
    max-width: 80%;
    /* Adjust icon size within the circle */
    max-height: 80%;
    display: block;
    /* Remove extra space below image */
}

.feature-card p {
    font-size: 1em;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 250px;
    /* Constrain paragraph width within the card */
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-content {
        margin-left: 5%;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 3em;
    }

    .features-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 5% 100px;
        text-align: center;
        /* Center content on smaller screens */
    }

    .hero-content {
        margin: 0 auto;
        /* Center block content */
    }

    .hero-content h1 {
        font-size: 2.5em;
        line-height: 1.3;
    }

    .features-section {
        padding: 70px 5%;
    }

    .features-section h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }

    .features-container {
        flex-direction: column;
        /* Stack cards vertically */
        align-items: center;
    }

    .feature-card {
        width: 80%;
        /* Make cards wider on small screens */
        max-width: 350px;
        /* Limit max width */
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1em;
    }

    .logo img {
        height: 40px;
    }

    .features-section h2 {
        font-size: 1.8em;
    }
}