@font-face {
    font-family: 'Meutas Black';
    src: local('Meutas Black'), local('Meutas-Black'),
        url('../fonts/Meutas-Black.woff2') format('woff2'),
        url('../fonts/Meutas-Black.woff') format('woff'),
        url('../fonts/Meutas-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Full reset styles for modern websites */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.5;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a,
a:hover {
    text-decoration: none;
    color: inherit;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
    outline: none;
    border: none;
    padding: 0;
    margin: 0;
    background: none;
}

button {
    cursor: pointer;
}

textarea {
    resize: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.25);
    z-index: 1000;
    padding: 10px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    height: 40px;
    flex-shrink: 0;
}

header .nav-menu {
    display: flex;
    gap: 20px;
}

header .nav-menu ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

header .nav-menu ul li a {
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

header .nav-menu ul li a:hover {
    color: #D72638;
}

header .btn-login {
    font-family: 'Meutas Black', sans-serif;
    font-size: 1rem;
    color: #fff;
    border: 2px solid #D72638;
    padding: 5px 15px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

header .btn-login:hover {
    background: #D72638;
}

@media (max-width: 768px) {
    header .nav-menu {
        display: none;
    }

    header .btn-login {
        margin-left: auto;
    }

    header .container {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    header {
        padding: 8px 0;
    }

    header .logo {
        height: 30px;
    }

    header .btn-login {
        font-size: 0.9rem;
        padding: 4px 12px;
    }
}

/* Hero Section */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: 20px;
    text-align: center;
    overflow: hidden;
}

.hero-container {
    max-width: 900px;
    color: #fff;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-family: 'Meutas Black', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8);
    -webkit-text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 70px;
}

.feature {
    font-family: 'Work Sans', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    color: #fff;
    font-size: 1rem;
    width: 220px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: glow 6s ease-in-out infinite;
    cursor: default;
}

.feature:hover {
    background: #D72638;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(36, 228, 239, 0);
    }

    50% {
        box-shadow: 0 0 10px rgba(36, 228, 239, 0.8);
    }
}

.hero-button {
    display: inline-block;
    font-family: 'Meutas Black', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    background: linear-gradient(45deg, #D72638 0%, #7F1D1D 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background: linear-gradient(45deg, #7F1D1D 0%, #D72638 100%);
    transform: scale(1.05);
}

.dynamic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background: linear-gradient(45deg, #D72638, #7F1D1D);
    filter: blur(100px);
    -webkit-filter: blur(100px);
    opacity: 0.5;
    animation: moveBlur 10s infinite ease-in-out;
}

.circle-top-left {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
}

.circle-bottom-right {
    width: 250px;
    height: 250px;
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

.circle-center {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes moveBlur {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(50px) scale(1.1);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .feature {
        font-size: 0.9rem;
        padding: 10px;
        width: 100%;
        max-width: 360px;
    }

    .hero-button {
        font-size: 1.2rem;
    }

    .circle-top-left,
    .circle-bottom-right,
    .circle-center {
        width: 200px;
        height: 200px;
        filter: blur(80px);
        -webkit-filter: blur(80px);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-button {
        font-size: 1rem;
    }

    .circle-top-left,
    .circle-bottom-right,
    .circle-center {
        width: 150px;
        height: 150px;
        filter: blur(60px);
        -webkit-filter: blur(60px);
    }
}

/* About Section */
#about {
    padding: 60px 40px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about-container {
    max-width: 900px;
    width: 100%;
    text-align: left;
}

.about-content {
    margin: 0 auto;
}

.about-title {
    font-family: 'Meutas Black', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #D72638;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    -webkit-text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.about-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.about-text span {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(215, 38, 56, 0.5);
}

@media (max-width: 768px) {
    #about {
        padding: 40px 20px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1rem;
    }
}

/* Statistics Section */
#statistics {
    padding: 60px 40px;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.stats-container {
    max-width: 1200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.7);
}

.stat-number {
    font-family: 'Meutas Black', sans-serif;
    font-size: 3rem;
    color: #D72638;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    -webkit-text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Advantages Section */
#advantages {
    padding: 60px 40px;
    background: linear-gradient(120deg, #111, #222);
    color: #fff;
    text-align: center;
}

.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.advantages-title {
    font-family: 'Meutas Black', sans-serif;
    font-size: 2.5rem;
    color: #D72638;
    margin-bottom: 40px;
}

.advantages-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    max-width: 300px;
    min-width: 250px;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.7);
}

.advantage-icon {
    font-size: 3rem;
    color: #D72638;
    margin-bottom: 15px;
    transition: transform 0.5s ease, color 0.3s ease;
}

.advantage-item:hover .advantage-icon,
.advantage-icon:hover {
    color: #B91C1C;
    transform: scale(1.2);
}

.advantage-heading {
    font-family: 'Meutas Black', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.advantage-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2rem;
    }

    .advantages-list {
        gap: 20px;
    }

    .advantage-icon {
        font-size: 2.5rem;
    }

    .advantage-heading {
        font-size: 1.3rem;
    }

    .advantage-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .advantages-title {
        font-size: 1.8rem;
    }

    .advantage-icon {
        font-size: 2rem;
    }

    .advantage-heading {
        font-size: 1.2rem;
    }

    .advantage-text {
        font-size: 0.8rem;
    }
}

/* Vacancies Section */
#vacancies {
    padding: 60px 40px;
    background: #111;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.vacancies-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vacancies-maintitle {
    font-family: 'Meutas Black', sans-serif;
    font-size: 2.5rem;
    color: #D72638;
    margin-bottom: 30px;
    text-align: center;
}

.vacancy-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vacancy-card:hover {
    transform: scale3d(1.03, 1.03, 1.03);
}

.vacancy-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vacancy-title {
    font-family: 'Meutas Black', sans-serif;
    font-size: 1.5rem;
    color: #fff;
}

.vacancy-salary {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #D72638;
    font-weight: bold;
}

.vacancy-button {
    font-family: 'Meutas Black', sans-serif;
    font-size: 1rem;
    color: #fff;
    padding: 10px 20px;
    border: 2px solid #D72638;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    background: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
}

.vacancy-button:hover {
    background: #D72638;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .vacancies-maintitle {
        font-size: 2rem;
    }

    .vacancy-card {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .vacancy-title {
        font-size: 1.3rem;
    }

    .vacancy-salary {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .vacancies-maintitle {
        font-size: 1.8rem;
    }

    .vacancy-title {
        font-size: 1.2rem;
    }

    .vacancy-salary {
        font-size: 1.1rem;
    }

    .vacancy-button {
        font-size: 0.9rem;
        padding: 8px 15px;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

/* reviews */
#reviews {
    padding: 60px 40px;
    background: #111;
    color: #fff;
    text-align: center;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-title {
    font-family: 'Meutas Black', sans-serif;
    font-size: 2.5rem;
    color: #D72638;
    margin-bottom: 40px;
}

.reviews-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    background: #1A1A1A;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.reviews-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
    width: 100%;
}

.reviews-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px 30px;
    color: #fff;
    font-size: 16px;
    background: #222;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reviews-item img {
    max-width: 150px;
    margin: 0 auto 20px;
}

.reviews-item h3 {
    font-family: 'Meutas Black', sans-serif;
    font-size: 28px;
    line-height: 1;
    color: #D72638;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
}

.reviews-item p {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.2;
}

.reviews-item p span {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(215, 38, 56, 0.5);
}

.reviews-item p,
.reviews-item ul {
    margin: 10px 0;
}

.reviews-item ul {
    padding-left: 20px;
}

.reviews-item li {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.2;
    margin-bottom: 5px;
}

.reviews-prev,
.reviews-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #D72638;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.reviews-prev {
    left: 5px;
}

.reviews-next {
    right: 5px;
}

@media (max-width: 768px) {
    #reviews {
        padding: 40px 20px;
    }

    .reviews-prev,
    .reviews-next {
        display: none;
    }

    .reviews-item {
        padding: 10px;
    }
}

@media (max-width: 600px) {
    .reviews-carousel {
        width: 95%;
        padding: 15px;
    }

    .reviews-track {
        width: 100%;
    }

    .reviews-item {
        min-height: 180px;
        max-width: 100%;
    }
}

@media (max-width: 400px) {
    .reviews-carousel {
        width: 100%;
        max-width: 100%;
        padding: 10px;
    }

    .reviews-item {
        min-height: 160px;
        max-width: 100%;
    }
}

/* Contact Section */
#contact {
    padding: 60px 40px;
    background: #111;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-family: 'Meutas Black', sans-serif;
    font-size: 2rem;
    color: #D72638;
    margin-bottom: 20px;
}

.contact-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
}

.contact-details li {
    margin-bottom: 10px;
}

.contact-details a {
    color: #D72638;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #B91C1C;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.contact-form label {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: #e0e0e0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D72638;
}

.contact-button {
    font-family: 'Meutas Black', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(45deg, #D72638 0%, #7F1D1D 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: linear-gradient(45deg, #7F1D1D 0%, #D72638 100%);
}

@media (max-width: 768px) {
    .contact-title {
        text-align: center;
    }

    .contact-text {
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .contact-form-container {
        max-width: 100%;
    }

    .contact-details li {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.8rem;
    }

    .contact-info,
    .contact-form-container {
        min-width: 100%;
    }

    .contact-text {
        font-size: 1rem;
    }

    .contact-details {
        font-size: 0.9rem;
    }

    .contact-form label {
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }

    .contact-button {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

/* Footer Section */
#footer {
    background: #000;
    color: #fff;
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: #e0e0e0;
    margin: 0;
}

.footer-text span {
    color: #D72638;
}

@media (max-width: 768px) {
    #footer {
        padding: 15px 20px;
    }

    .footer-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-text {
        font-size: 0.8rem;
    }
}

/* Thank You Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    color: #000;
    padding: 30px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 90%;
}

.modal-content h2 {
    font-family: 'Meutas Black', sans-serif;
    font-size: 2rem;
    color: #D72638;
    margin-bottom: 10px;
}

.modal-content p {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

.close-modal-button {
    font-family: 'Meutas Black', sans-serif;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(45deg, #D72638 0%, #7F1D1D 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal-button:hover {
    background: linear-gradient(45deg, #7F1D1D 0%, #D72638 100%);
}