.elementor-28545 .elementor-element.elementor-element-64d62515{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-76ca8e45 *//* Full-width background section */

.common-section {
    background: linear-gradient(45deg, #C80B72, #FF7F50); /* Gradient background */
    padding: 50px 0; /* Top and bottom padding */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    min-height: 75vh; /* Minimum height for the section */
    width: 100vw; /* Full viewport width */
    margin: 0; /* Remove margin to stretch full width */
    overflow: hidden;
    box-sizing: border-box; /* Include padding in width/height calculations */
}

/* Inner container with white background */
.premium-access-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 13px 2px rgba(0, 0, 0, 0.15); /* Subtle shadow */
    width: 90%; /* Container width */
    max-width: 1200px; /* Maximum width for larger screens */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Hover effect for the container */
.premium-access-container:hover {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2); /* Shadow effect */
    transform: translateY(-10px); /* Lift effect */
}

/* Heading styles */
.common-section h2 {
    font-size: 2.4em; /* Adjusted font size */
    font-weight: 800; /* Bold font */
    color: #0d47a1; /* Dark blue color */
    margin-bottom: 10px;
    letter-spacing: 1.2px; /* Slightly spaced letters */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

/* Paragraph styles */
.common-section p {
    font-size: 1.2em; /* Adjusted font size */
    margin-bottom: 20px;
    line-height: 1.5; /* Line spacing */
}

/* Highlighted links */
.common-section .highlight-1 {
    color: #1976d2; /* Blue color */
    font-weight: bold;
    text-decoration: underline;
}

/* Button container for alignment */
.common-section .button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Button styles */
.common-section .hover-button {
    color: white; /* Ensure button text is white */
    border: none;
    padding: 15px 25px; /* Button padding */
    font-size: 16px; /* Button font size */
    cursor: pointer;
    border-radius: 5px; /* Rounded button corners */
    transition: background-color 0.3s;
}

/* Red button styles */
.common-section .red-button {
    background-color: #E12562; /* Red background */
    color: white;
}

/* Blue button styles */
.common-section .blue-button {
    background-color: #007bff; /* Blue background */
    color: white;
}

/* Hover effects for buttons */
.common-section .red-button:hover {
    background-color: #c11e4d;
    color: white;
}

.common-section .blue-button:hover {
    background-color: #0056b3;
    color: white;
}

/* Media queries for responsiveness */
@media (max-width: 960px) {
    .premium-access-container {
        width: 95%; /* Adjusted width for smaller screens */
        padding: 15px; /* Smaller padding for mobile */
    }

    .common-section h2 {
        font-size: 2em; /* Smaller font size for headings */
    }

    .common-section p {
        font-size: 1em; /* Adjusted font size for mobile */
    }

    .common-section .hover-button {
        padding: 10px 20px; /* Smaller button padding */
        font-size: 14px; /* Smaller button text size */
    }
}/* End custom CSS */