@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat, sans-serif;
}

.header {
    padding: 20px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    color: #333;
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: #333;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}

.nav {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff69b4;
}

.nav-links a.active {
    color: #ff69b4;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background-color: #f0f2ff;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(16px, 2vw, 18px);
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.services {
    padding: 80px 20px;
}

.services h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    font-size: clamp(24px, 3vw, 36px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

footer {

    color: black;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

footer nav {
    margin-top: 20px;
}

footer a {
    color: black;
    text-decoration: none;
    margin: 0 10px;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }

    .services {
        padding: 40px 20px;
    }

    .service-card {
        padding: 20px;
    }
}

.contact-section {
    background-color: #0a0a5e;
    padding: 60px 20px;
    color: white;
    min-height: 600px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 40px;
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.form-textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: #4040ff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 200px;
    margin: 20px auto 0;
}

.submit-button:hover {
    background-color: #3333cc;
}

/* Footer Styles */
.footer {
    padding: 20px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    font-size: 24px;
    color: #333;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
}

.footer-copyright {
    width: 100%;
    text-align: left;
    margin-top: 20px;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #4040ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icon img {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background-color: #3333cc;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* art-hotels.css */
.hotel-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
}

.hotel-info {
    flex: 1;
}

.hotel-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.hotel-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 24px;
    font-weight: bold;
}

.info-section {
    margin-bottom: 20px;
}

.info-label {
    color: #ff6b6b;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

.info-content {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.visit-button {
    display: inline-block;
    background-color: #4040ff;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.visit-button:hover {
    background-color: #3333cc;
}

@media (max-width: 768px) {
    .hotel-card {
        flex-direction: column;
        padding: 20px;
    }

    .hotel-image {
        max-width: 100%;
        margin-bottom: 20px;
        order: -1;
    }

    .hotel-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .info-label {
        font-size: 16px;
    }
}

/* capsule-hotels.css */
.capsule-hero {
    background-color: #f0f2ff;
    padding: 80px 20px;
    text-align: center;
}

.capsule-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.capsule-hero h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: #666;
    margin-bottom: 30px;
}

.capsule-hero p {
    font-size: clamp(16px, 2vw, 18px);
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.hotels-grid {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.hotel-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hotel-info {
    flex: 1;
}

.hotel-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.hotel-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 24px;
    font-weight: bold;
}

.info-section {
    margin-bottom: 20px;
}

.info-label {
    color: #ff6b6b;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

.info-content {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.visit-button {
    display: inline-block;
    background-color: #4040ff;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    margin-top: 20px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.visit-button:hover {
    background-color: #3333cc;
}

@media (max-width: 768px) {
    .hotel-card {
        flex-direction: column;
        padding: 20px;
    }

    .hotel-image {
        max-width: 100%;
        margin-bottom: 20px;
        order: -1;
    }

    .hotel-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .info-label {
        font-size: 16px;
    }

    .capsule-hero {
        padding: 40px 20px;
    }
}

/* casino-hotels.css */
.casino-hero {
    background-color: #f0f2ff;
    padding: 80px 20px;
    text-align: center;
}

.casino-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.casino-hero h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: #666;
    margin-bottom: 30px;
}

.casino-hero p {
    font-size: clamp(16px, 2vw, 18px);
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.hero-footer {
    font-style: italic;
    margin-top: 30px;
    color: #666;
}

.hotels-grid {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.hotel-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-info {
    flex: 1;
}

.hotel-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hotel-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 24px;
    font-weight: bold;
}

.info-section {
    margin-bottom: 20px;
}

.info-label {
    color: #ff6b6b;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

.info-content {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenities-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
}

.amenities-list li::before {
    content: "•";
    color: #ff6b6b;
    position: absolute;
    left: 0;
}

.visit-button {
    display: inline-block;
    background-color: #4040ff;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.visit-button:hover {
    background-color: #3333cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hotel-card {
        padding: 30px;
        gap: 30px;
    }

    .hotel-title {
        font-size: 30px;
    }

    .info-label {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .casino-hero {
        padding: 40px 20px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hotel-card {
        flex-direction: column;
        padding: 20px;
    }

    .hotel-image {
        max-width: 100%;
        order: -1;
    }

    .hotel-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .info-section {
        margin-bottom: 15px;
    }

    .info-label {
        font-size: 15px;
    }

    .visit-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature, .hotel-card {
    animation: fadeIn 0.6s ease-out forwards;
}

.hotel-card:nth-child(2) {
    animation-delay: 0.2s;
}

.hotel-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Hover Effects */
.info-section:hover .info-label {
    color: #ff4f4f;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s;
}

/* Print Styles */
@media print {
    .hotel-card {
        break-inside: avoid;
        box-shadow: none;
    }

    .visit-button {
        display: none;
    }

    .feature-icon {
        display: none;
    }
}

/* ice-hotels.css */
.ice-hero {
    background: linear-gradient(to bottom, #e8f0ff, #f0f2ff);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ice-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3));
    pointer-events: none;
}

.ice-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.ice-hero h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: #666;
    margin-bottom: 30px;
    position: relative;
}

.ice-hero p {
    font-size: clamp(16px, 2vw, 18px);
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    position: relative;
}

.feature {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.hero-footer {
    font-style: italic;
    margin-top: 30px;
    color: #666;
}

.hotels-grid {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.hotel-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4040ff, #87CEEB);
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-info {
    flex: 1;
}

.hotel-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hotel-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 24px;
    font-weight: bold;
    background: linear-gradient(90deg, #333, #4040ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-section {
    margin-bottom: 20px;
}

.info-label {
    color: #4040ff;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

.info-content {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-content:last-child {
    margin-bottom: 0;
}

.visit-button {
    display: inline-block;
    background: linear-gradient(90deg, #4040ff, #5050ff);
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(64, 64, 255, 0.2);
}

.visit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 64, 255, 0.3);
    background: linear-gradient(90deg, #3030ff, #4040ff);
}

/* Snow animation */
@keyframes snowfall {
    0% {
        transform: translateY(-100%) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

.snowflake {
    position: fixed;
    color: white;
    font-size: 1em;
    animation: snowfall 10s linear infinite;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hotel-card {
        padding: 30px;
        gap: 30px;
    }

    .hotel-title {
        font-size: 30px;
    }

    .info-label {
        font-size: 16px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ice-hero {
        padding: 40px 20px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .hotel-card {
        flex-direction: column;
        padding: 20px;
    }

    .hotel-image {
        max-width: 100%;
        order: -1;
    }

    .hotel-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .info-section {
        margin-bottom: 15px;
    }

    .visit-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature, .hotel-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.hotel-card:nth-child(2) {
    animation-delay: 0.2s;
}

.hotel-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Print styles */
@media print {
    .ice-hero::before {
        display: none;
    }

    .hotel-card {
        break-inside: avoid;
        box-shadow: none;
    }

    .visit-button {
        display: none;
    }

    .feature-icon {
        display: none;
    }
}

/* about.css */
.about-hero {
    background: linear-gradient(to bottom, #f0f2ff, #ffffff);
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: #333;
    margin-bottom: 20px;
}

.about-hero h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: #666;
    margin-bottom: 30px;
}

.about-hero p {
    font-size: clamp(16px, 2vw, 18px);
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-content section {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.about-content section:nth-child(2) {
    animation-delay: 0.2s;
}

.about-content section:nth-child(3) {
    animation-delay: 0.4s;
}

.about-content h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4040ff, #87CEEB);
}

.about-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    color: #333;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4040ff;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.section-image:hover {
    transform: scale(1.02);
}

.highlight {
    font-size: 18px;
    color: #4040ff;
    font-weight: 500;
    padding: 20px;
    background: rgba(64, 64, 255, 0.1);
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
}

.contact-info {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.icon {
    font-size: 24px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 40px 20px;
    }

    .about-content {
        padding: 20px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .highlight {
        font-size: 16px;
        padding: 15px;
    }
}

/* Print styles */
@media print {
    .about-hero {
        background: none;
        padding: 40px 0;
    }

    .section-image {
        max-width: 500px;
        margin: 20px auto;
    }

    .highlight {
        background: none;
        border: 1px solid #333;
    }
}

/* contact.css */
.contact-hero {
    background: linear-gradient(to bottom, #f0f2ff, #ffffff);
    padding: 80px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: #333;
    margin-bottom: 20px;
}

.contact-hero h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: #666;
    margin-bottom: 30px;
}

.contact-hero p {
    font-size: clamp(16px, 2vw, 18px);
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-section {
    padding: 60px 20px;
    background-color: #f8f9ff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4040ff;
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: #4040ff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-button:hover {
    background: #3333cc;
    transform: translateY(-2px);
}

/* Form validation styles */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #ff4040;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #40ff40;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 40px 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
    }

    .submit-button {
        padding: 12px;
        font-size: 16px;
    }
}

/* privacy.css */
.privacy-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.privacy-content h1 {
    font-size: clamp(32px, 5vw, 42px);
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #4040ff;
}

.policy-section {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.6s ease-out;
}

.policy-section:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.policy-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.policy-section h3 {
    font-size: 20px;
    color: #444;
    margin: 20px 0 10px;
}

.policy-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    list-style: none;
    padding-left: 20px;
    margin: 15px 0;
}

.policy-section ul li {
    color: #666;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.policy-section ul li::before {
    content: "•";
    color: #4040ff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.policy-section a {
    color: #4040ff;
    text-decoration: none;
    transition: color 0.3s;
}

.policy-section a:hover {
    color: #3333cc;
    text-decoration: underline;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Table styles for any data tables */
.policy-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.policy-section th,
.policy-section td {
    padding: 12px;
    border: 1px solid #eee;
    text-align: left;
}

.policy-section th {
    background-color: #f8f9ff;
    font-weight: 600;
}

/* Emphasis styles */
.policy-section strong {
    color: #333;
    font-weight: 600;
}

.policy-section em {
    font-style: italic;
    color: #555;
}

/* Contact information styling */
.policy-section .contact-info {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.policy-section .contact-info p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-content {
        margin: 30px auto;
    }

    .policy-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .policy-section h2 {
        font-size: 20px;
    }

    .policy-section h3 {
        font-size: 18px;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 15px;
    }
}

/* Print styles */
@media print {
    .privacy-content {
        margin: 0;
        padding: 0;
    }

    .policy-section {
        break-inside: avoid;
        box-shadow: none;
        padding: 15px 0;
        background: none;
    }

    .policy-section:hover {
        box-shadow: none;
        transform: none;
    }

    .policy-section h2 {
        font-size: 18px;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 12px;
    }
}

/* Privacy Policy Header */
.privacy-hero {
    background-color: #f0f2ff;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.privacy-hero h1 {
    font-size: clamp(36px, 5vw, 48px);
    color: #393939;
    margin: 0;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 40px 20px;
    }
}

/* Remove previous h1 styling */
.privacy-content h1 {
    display: none;
}

/* terms.css */
.terms-hero {
    background-color: #f0f2ff;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.terms-hero h1 {
    font-size: clamp(36px, 5vw, 48px);
    color: #393939;
    margin: 0;
    font-weight: 600;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.effective-date {
    text-align: left;
    margin-bottom: 30px;
    font-size: 16px;
    color: #666;
}

.terms-section {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.6s ease-out;
}

.terms-section:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.terms-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.terms-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-section a {
    color: #4040ff;
    text-decoration: none;
    transition: color 0.3s;
}

.terms-section a:hover {
    color: #3333cc;
    text-decoration: underline;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Numbered list style for mobile */
@media (max-width: 768px) {
    .terms-hero {
        padding: 40px 20px;
    }

    .terms-content {
        padding: 0 15px;
    }

    .terms-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .terms-section h2 {
        font-size: 20px;
    }

    .terms-section p {
        font-size: 15px;
    }
}

/* Print styles */
@media print {
    .terms-hero {
        background: none;
        padding: 20px 0;
    }

    .terms-section {
        break-inside: avoid;
        box-shadow: none;
        padding: 15px 0;
    }

    .terms-section:hover {
        box-shadow: none;
        transform: none;
    }

    .terms-content {
        max-width: 100%;
    }
}