/* General styles */
body {
    font-family: 'Gruppo', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f8f8;
}

/* Header Styling */
header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.flag {
    width: 50px;
    height: auto;
    margin-right: 15px;
}

h1 {
    font-size: 24px;
    margin: 0;
}

/* Section Styling */
.section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    
}

.white-bg {
    background-color: white;
    color: #333;
}

.blue-bg {
    background-color: #435494;
    color: white;
}

/* First Section - Set Relative Position */
.first-section {
    position: relative; 
    padding-bottom: 0px;

}

.first-section .text h2 {
    font-size: 36px; /* Increase the font size of the heading */
}

.first-section .text p {
    font-size: 18px; /* Increase the font size of the paragraph text */
}





/* Updated Custom Shape Divider */
.custom-shape-divider-bottom-1739403489 {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}



.custom-shape-divider-bottom-1739403489 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1739403489 .shape-fill {
    fill: #435494;
}

/* Content Styling */
.content {
    max-width: 800px;
}

/* Doubled Main Image Size */
.main-image {
    .main-image {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 500px; /* Keep current width */
        height: auto;
        border-radius: 8px;
        z-index: 2; /* Ensure it's above the shape divider */
    }
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    /*background-color: #ff6f61; Complementary color */
    background-color: #ff0000; /* Complementary color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    cursor: pointer; /* Change cursor to pointer */
}

.cta-button:hover {
    background-color: #e65c50; /* Darker shade for hover effect */
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}


/* Responsive Design */
@media (max-width: 768px) {
    .section {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
    }

    .custom-shape-divider-bottom-1739403489 {
        display: none; /* Hide the SVG curve on mobile devices */
    }

   
}
