.content-block glassmorphism {
    padding:20px;
}



.darkt {
    color: black;
}



/* بخش بررسی زنده دامنه */
.live-domain-section {
    text-align: center;
    padding: 80px 20px;
    position: relative;
    z-index: 10;
  }
  
  .live-domain-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
  }
  
  .live-domain-section .section-subtitle {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1rem;
  }
  
  .open-live-check {
    background: black;
    color: white;
    font-size: 1.1rem;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .open-live-check {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.4);
  }
  
  /* مودال نمایش iframe */
  .modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    z-index: 999;
  }
  
  .modal-content {
    position: relative;
    width: 80%;
    max-width: 600px;
    height: 40%;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  }
  
  .modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: rgb(251 0 0);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s ease;
    border: 1px solid;
    width: 60px;
    border-radius: 15px;
    background: radial-gradient(#e8e8e8, #ff0000ab);
}
  .close-btn:hover { transform: scale(1.2); }


/* فونت ایران‌سنس (Vazirmatn) - نسخه آپلود شده */
@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* اعمال فونت به کل سایت */
:root {
    --font-family: 'Vazirmatn', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    font-family: var(--font-family);
}

/* برای اطمینان بیشتر */
body, input, textarea, select, button, h1, h2, h3, h4, h5, h6, p, span, div, a, li, td, th {
    font-family: var(--font-family);
}

/* تنظیم وزن فونت برای عناوین */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* تنظیم وزن فونت برای دکمه‌ها */
.btn {
    font-weight: 500;
}

/* تنظیم وزن فونت برای لینک‌های ناوبری */
.nav-link {
    font-weight: 500;
}

/* تنظیم وزن فونت برای متن معمولی */
body {
    font-weight: 400;
    line-height: 1.8;
}

/* Basic Reset & Variables */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --background-light: #f0f2f5;
    --background-dark: #121212;
    --card-background-light: rgba(255, 255, 255, 0.8);
    --card-background-dark: rgba(30, 30, 30, 0.8);
    --text-light: #212529;
    --text-dark: #e0e0e0;
    --border-color-light: #dee2e6;
    --border-color-dark: #444;
    --glass-blur-light: 10px;
    --glass-blur-dark: 15px;
    --transition-speed: 0.4s;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-light);
    color: var(--text-light);
    line-height: 1.7;
    scroll-behavior: smooth;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.dark-mode {
    background-color: var(--background-dark);
    color: var(--text-dark);
}

.dark-mode .glassmorphism {
    background: var(--card-background-dark);
    backdrop-filter: blur(var(--glass-blur-dark));
    -webkit-backdrop-filter: blur(var(--glass-blur-dark));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode a {
    color: var(--primary-color);
}

.dark-mode header {
    background-color: rgba(30, 30, 30, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dark-mode nav ul li a:hover {
    color: var(--primary-color);
}

.dark-mode .btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.dark-mode .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.dark-mode .btn-secondary {
     background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.dark-mode .btn-secondary:hover {
     background-color: #5a6268;
     border-color: #5a6268;
}

.dark-mode .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.dark-mode .btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.dark-mode input[type="text"],
.dark-mode input[type="email"],
.dark-mode textarea,
.dark-mode select {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
    border: 1px solid var(--border-color-dark);
}

.dark-mode table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
    background-color: rgba(30, 30, 30, 0.8);
}

.dark-mode table th, .dark-mode table td {
    border: 1px solid var(--border-color-dark);
    padding: 12px 15px;
    text-align: right;
}

.dark-mode table thead th {
    background-color: rgba(40, 40, 40, 0.9);
}

.dark-mode footer {
    background-color: #1a1a1a;
    color: #ccc;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 600;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2em; text-align: center; margin-bottom: 40px; }
h3 { font-size: 1.6em; }

p { margin-bottom: 15px; }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: #0056b3;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: none;
    margin: 5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
     background-color: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
     background-color: #5a6268;
     border-color: #5a6268;
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.glassmorphism {
    background: var(--card-background-light);
    backdrop-filter: blur(var(--glass-blur-light));
    -webkit-backdrop-filter: blur(var(--glass-blur-light));
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
}

.glassmorphism:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Header */
#header {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: background-color var(--transition-speed), box-shadow var(--transition-speed);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-text {
    font-size: 1.5em;
    margin-left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    animation: pulse 2s infinite;
}

.site-title {
    font-size: 1.2em;
    color: var(--dark-color);
    margin-left: 10px;
}

.dark-mode .site-title {
    color: var(--light-color);
}

#nav-menu {
    flex-grow: 1;
    margin-right: 20px;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.nav-list li {
    margin: 0 15px;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    transition: color var(--transition-speed);
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease-in-out;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
}

.theme-toggle-btn {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: var(--dark-color);
    margin-left: 0px;
    transition: color var(--transition-speed);
}

.theme-toggle-btn:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none; /* Hidden on larger screens */
    background: none;
    border: none;
    font-size: 1.8em;
    cursor: pointer;
    color: var(--dark-color);
    transition: color var(--transition-speed);
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #6e8efb, #007bff); /* Example gradient */
    color: white;
    padding-top: 100px; /* Space for fixed header */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://via.placeholder.com/1500x1000/f0f2f5/6c757d?text=Background+Pattern') center center repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    text-align: right;
    animation: fadeInRight 1s ease-out forwards;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content .highlight {
    color: var(--warning-color);
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-actions .btn {
    margin: 0 10px;
}

.hero-image-placeholder {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInLeft 1s ease-out forwards;
}

.animated-graphic {
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.animated-graphic::before, .animated-graphic::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.animated-graphic::before {
    width: 150px;
    height: 150px;
    top: 50px;
    left: 75px;
    animation: float 3s ease-in-out infinite reverse;
}

.animated-graphic::after {
    width: 100px;
    height: 100px;
    top: 100px;
    left: 100px;
    background: rgba(255, 255, 255, 0.1);
    animation: float 5s ease-in-out infinite;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: var(--background-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    padding: 30px;
    text-align: center;
    background-color: var(--card-background-light);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.pricing-card.featured:hover {
     transform: translateY(-10px) scale(1.05);
     box-shadow: 0 20px 40px rgba(0, 123, 255, 0.4);
}

.pricing-card-header h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.price {
    font-size: 3em;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.currency {
    font-size: 0.8em;
    font-weight: normal;
    opacity: 0.8;
}

.price-description {
    font-size: 0.9em;
    opacity: 0.7;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: right;
}

.features-list li {
    margin-bottom: 12px;
    font-size: 1.05em;
    display: flex;
    align-items: center;
}

.features-list li i {
    margin-left: 10px;
    color: var(--success-color);
    font-size: 1.1em;
}

.features-list li:nth-child(even) i {
    color: var(--danger-color);
}

/* Domain Section */
.domains-section {
    padding: 100px 0;
    background-color: var(--background-light); /* Or a slightly different shade */
}

.domain-search {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    margin-bottom: 40px;
    gap: 15px;
}

.domain-search input[type="text"] {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color-light);
    flex-grow: 1;
    max-width: 350px;
    font-size: 1em;
}

.domain-search select {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color-light);
    font-size: 1em;
    background-color: white;
}

.domain-pricing-table {
    padding: 30px;
    margin-top: 20px;
}

.domain-pricing-table h3 {
    text-align: center;
    margin-bottom: 25px;
}

.domain-pricing-table table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
}

.domain-pricing-table th, .domain-pricing-table td {
    border: 1px solid var(--border-color-light);
    padding: 12px 15px;
    text-align: right;
}

.domain-pricing-table thead th {
    background-color: rgba(240, 242, 245, 0.8);
    color: #6d6d6d;
    font-weight: 600;
}

.domain-pricing-table tbody tr:nth-child(even) {
    background-color: rgba(248, 249, 250, 0.5); /* Lighter row */
}

.domain-pricing-table td i {
    margin-left: 8px;
    color: var(--info-color);
}

.domain-pricing-table .btn-small {
    padding: 6px 12px;
}


/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: #ffffff; /* White background for contrast */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 30px;
    text-align: center;
    background-color: var(--card-background-light);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.feature-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
    animation: pulse 2s infinite;
}

.feature-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

/* Add-ons Section */
.add-ons-section {
    padding: 100px 0;
    background-color: var(--background-light);
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.add-on-item {
    padding: 30px;
    text-align: center;
    background-color: var(--card-background-light);
}

.add-on-item i {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

.add-on-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.add-on-price {
    font-weight: bold;
    color: var(--success-color);
    margin: 15px 0;
    font-size: 1.1em;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    justify-content: space-around;
}

.contact-info {
    flex: 1;
    min-width: 250px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
}

.contact-info i {
    margin-left: 15px;
    color: var(--primary-color);
    font-size: 1.2em;
}

.social-links {
    margin-top: 25px;
}

.social-links a {
    display: inline-block;
    margin-left: 15px;
    font-size: 1.8em;
    color: var(--secondary-color);
    transition: color var(--transition-speed);
}

.social-links a:hover {
    color: var(--primary-color);
}

.contact-form {
    flex: 1.5;
    min-width: 300px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color-light);
    border-radius: 5px;
    font-size: 1em;
    background-color: var(--card-background-light); /* Light background for input */
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: auto;
    padding: 12px 30px;
}

/* Footer */
#footer {
    background-color: var(--dark-color);
    color: #ccc;
    padding: 60px 0 20px;
    font-size: 0.95em;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    transition: color var(--transition-speed);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    margin-right: 5px;
}

.footer-section .social a {
    display: inline-block;
    margin-left: 15px;
    font-size: 1.5em;
    color: #aaa;
    transition: color var(--transition-speed);
}

.footer-section .social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 20px;
    font-size: 0.85em;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .hero-section {
        padding-top: 80px;
    }

    .hero-content h1 {
        font-size: 2.8em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 40px;
        animation: none; /* Simpler animation for mobile */
    }

    .hero-image-placeholder {
         animation: none;
    }

    .animated-graphic {
        width: 200px;
        height: 200px;
    }
    .animated-graphic::before, .animated-graphic::after {
         width: 100px;
         height: 100px;
    }

    .pricing-grid, .features-grid, .add-ons-grid {
        grid-template-columns: 1fr;
    }

    .domain-search {
        flex-direction: column;
        gap: 10px;
    }

    .domain-search input[type="text"], .domain-search select {
        width: 100%;
        max-width: none;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-form form {
        margin-top: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section.social a {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    #nav-menu {
        display: none; /* Hide for mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--card-background-light);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 0 0 10px 10px;
    }

    #nav-menu.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .nav-list li {
        margin: 10px 0;
    }

    .header-right .mobile-menu-btn {
        display: block; /* Show hamburger icon */
    }

    .logo {
        font-size: 1.5em;
    }
    .logo-text {
        font-size: 1.3em;
    }
    .site-title {
        font-size: 1em;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }
    .hero-content p {
        font-size: 1em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.6em; margin-bottom: 30px; }
    h3 { font-size: 1.3em; }

    .hero-section {
        min-height: 70vh;
        padding-top: 70px;
    }

    .hero-content {
        min-width: unset;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        margin: 5px 0;
    }

    .pricing-card, .feature-item, .add-on-item {
        padding: 20px;
    }

    .price {
        font-size: 2.5em;
    }
    .features-list li {
        font-size: 1em;
    }

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

    .footer-section {
        min-width: unset;
        width: 100%;
    }
}
