
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    background: 
        linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.3)),
        url('/images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative; 
}

.hero-content {
    max-width: 800px;
    margin-top: 15vh;
    position: relative;
    z-index: 2;
}
h1 {
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}


.photo-container {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .photo-container {
        width: 250px;
        height: 250px;
    }
    
    .hero-content {
        margin-top: 7vh;
    }
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}


.description-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 20px;
    max-width: 500px;
    margin: 30px auto 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.description-card p {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
}


@media (max-width: 768px) {
    .description-card {
        max-width: 90%;
        padding: 15px;
        margin-top: 20px;
    }
    
    .description-card p {
        font-size: 1rem;
    }
}


.description-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
} 


.navbar {
    background: transparent !important;
    transition: all 0.5s ease;
    padding: 25px 0;
}

.navbar.scrolled {
    background: rgba(44, 62, 80, 0.9) !important;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand,
.nav-link {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


@media (max-width: 992px) {
    .navbar-collapse {
        background: rgba(44, 62, 80, 0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
}


.contacts {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    position: relative;
    overflow: hidden;
}

.contacts::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(44, 62, 80, 0.05);
    border-radius: 50%;
}

.section-title {
    font-family: 'Philosopher', sans-serif;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #e74c3c;
    margin: 15px auto 0;
}

.contacts-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contacts-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.contact-info h3 {
    font-family: 'Philosopher', sans-serif;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.contact-info p {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-button svg {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.contact-button:hover {
    color: #e74c3c;
}

.contact-button:hover svg {
    transform: translateX(5px);
}


@media (max-width: 768px) {
    .contacts-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

.contact-icon {
   
    transition: all 0.4s ease;
    animation: pulse 2s infinite;
}

.contact-icon:hover {
    animation: shake 0.5s ease;
    background: #0088cc;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(44, 62, 80, 0.1); }
    100% { transform: scale(1); }
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
    75% { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}


.nav-link.active:hover::after {
    width: 100% !important;
    background-color: #e74c3c !important;
    animation: none !important;
}


.nav-link.active::after {
    background-color: #e74c3c !important;
    width: 100% !important;
    transform: none !important;
}


.nav-link::after {
    transition: 
        width 0.3s ease,
        background-color 0.3s ease !important;
}


.about {
    padding: 80px 20px;
    background: white;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(44, 62, 80, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.about-card h3 {
    font-family: 'Philosopher', sans-serif;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.about-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.about-list strong {
    color: #2c3e50;
    min-width: 100px;
    display: inline-block;
}

.interests {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.interest-badge {
    background: #f5f7fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.interest-badge:hover {
    background: #3498db;
    color: white;
    transform: scale(1.05);
}


.about-card:nth-child(1) .about-icon {
    animation: pulse 2s infinite;
}
.about-card:nth-child(2) .about-icon {
    animation: pulse 2s infinite 0.3s;
}
.about-card:nth-child(3) .about-icon {
    animation: pulse 2s infinite 0.6s;
}


@media (max-width: 768px) {
    .about {
        padding: 60px 15px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card {
        padding: 25px;
    }
}


.about-you {
    padding: 80px 20px;
    background: #fff9f9;
    position: relative;
}

.about-you::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(231, 76, 60, 0.05);
    border-radius: 50%;
}

.looking-for {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.looking-for-card,
.compatibility-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.looking-for-card:hover,
.compatibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.heart-icon {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.heart-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.qualities-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.qualities-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.quality-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.quality-text {
    font-size: 1.1rem;
    color: #2c3e50;
}

.compatibility-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.compatibility-item {
    text-align: center;
    padding: 20px 15px;
    border-radius: 10px;
    background: #fef6f6;
    transition: all 0.3s ease;
}

.compatibility-item:hover {
    background: #fce4e4;
    transform: scale(1.03);
}

.compatibility-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.compatibility-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #7f8c8d;
}


@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.heart-icon {
    animation: heartbeat 1.5s infinite;
}


@media (max-width: 768px) {
    .looking-for {
        grid-template-columns: 1fr;
    }
    
    .compatibility-items {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-you {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .compatibility-items {
        grid-template-columns: 1fr;
    }
}



.our-future {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.our-future::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(44, 62, 80, 0.03);
    border-radius: 50%;
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.future-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.future-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #e74c3c;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.future-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.future-card:hover::after {
    transform: scaleX(1);
}

.future-icon {
    width: 60px;
    height: 60px;
    background: #2c3e80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.future-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.future-card h3 {
    font-family: 'Philosopher', sans-serif;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.foundation-list,
.vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.foundation-list li,
.vision-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 25px;
}

.foundation-list li::before,
.vision-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.opportunities {
    display: grid;
    gap: 20px;
    margin-top: 25px;
}

.opportunity {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.opportunity:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.opportunity-icon {
    font-size: 1.8rem;
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
}

.vision-list {
    margin-top: 20px;
}


.future-card:nth-child(1) .future-icon {
    animation: pulse 2s infinite;
}
.future-card:nth-child(2) .future-icon {
    animation: pulse 2s infinite 0.2s;
}
.future-card:nth-child(3) .future-icon {
    animation: pulse 2s infinite 0.4s;
}


@media (max-width: 768px) {
    .future-grid {
        grid-template-columns: 1fr;
    }
    
    .our-future {
        padding: 60px 15px;
    }
    
    .future-card {
        padding: 25px;
    }
}


.photo-gallery {
    margin-top: 60px;
    grid-column: 1 / -1;
}

.gallery-title {
    font-family: 'Philosopher', sans-serif;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
}

.gallery-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e74c3c;
    margin: 15px auto 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.gallery-item {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }


@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-caption {
        transform: translateY(0);
        background: rgba(0,0,0,0.5);
    }
}



.site-footer {
    position: relative;
    background: #2c3e50;
    color: white;
    padding-top: 80px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-message h3 {
    font-family: 'Philosopher', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.3;
}

.footer-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-button {
    display: inline-flex;
    align-items: center;
    background: #e74c3c;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.footer-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.footer-button svg {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.footer-button:hover svg {
    transform: translateX(5px);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}


.footer-message {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-contacts {
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.footer-bottom {
    animation: fadeIn 0.6s ease 0.4s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-message h3 {
        font-size: 1.5rem;
    }
    
    .footer-wave svg {
        height: 50px;
    }
}


.telegram-item {
    background: rgba(0, 136, 204, 0.1) !important;
    border-left: 3px solid #0088cc;
}

.telegram-item:hover {
    background: rgba(0, 136, 204, 0.2) !important;
}

.telegram-item svg {
    fill: #0088cc;
}


.telegram-item:hover svg {
    animation: fly 0.6s ease;
}

@keyframes fly {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px) translateY(-2px); }
    50% { transform: translateX(3px) translateY(2px); }
    75% { transform: translateX(-2px) translateY(1px); }
}

.email-item {
    background: rgba(234, 67, 53, 0.1) !important;
    border-left: 3px solid #ea4335;
}

.email-item:hover {
    background: rgba(234, 67, 53, 0.2) !important;
}

.email-item svg {
    fill: #ea4335;
}


.about-description {
    max-width: 960px;
    margin: 50px auto;
    padding: 0 20px;
    grid-column: 1 / -1;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: left;
}


.about-description {
    position: relative;
    padding-top: 30px;
}

.about-description::before {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: #e74c3c;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 30px;
}


.about-description {
    animation: fadeInUp 0.8s ease both;
}


@media (max-width: 768px) {
    .about-description {
        margin: 30px auto;
    }
    
    .about-description p {
        font-size: 1rem;
        text-align: left;
    }
}

.telegram-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: 'Montserrat', sans-serif;
}

.chat-button {
  background: #0088cc;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 136, 204, 0.3);
  transition: all 0.3s ease;
}

.chat-button:hover {
  background: #0077b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.chat-button svg {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.chat-form {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 350px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.chat-form.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.form-header h4 {
  margin: 0;
  color: #2c3e50;
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #7f8c8d;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #e74c3c;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0088cc;
  outline: none;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.submit-btn {
  background: #0088cc;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: #0077b3;
}

.submit-btn svg {
  width: 18px;
  height: 18px;
  margin-left: 8px;
}

.g-recaptcha {
  margin: 15px 0;
}


.consent-checkbox {
    margin: 15px 0;
}

.consent-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    cursor: pointer;
    color: #555;
    transition: color 0.3s;
}

.consent-checkbox input {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.consent-label a {
    color: #3498db;
    text-decoration: none;
    margin-left: 4px;
    transition: color 0.3s;
}

.consent-label a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.consent-label:hover {
    color: #333;
}