
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
header {
    position: fixed;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    z-index: 100;
    background: linear-gradient(135deg, #001847 0%, #002366 100%);
}

header a{
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 180px;
    height: 50px;
    background: #4D9EFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: white;
}

.logo-icon::before {
    content: "CRICTEK";
}

nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #4D9EFF;
}

.cta-button {
    background: #4D9EFF;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(77, 158, 255, 0.3);
}

.cta-button:hover {
    background: #3B82F6;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #001847 0%, #002366 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape1 {
    width: 600px;
    height: 600px;
    background: #4D9EFF;
    bottom: -300px;
    left: -200px;
}

.shape2 {
    width: 400px;
    height: 400px;
    background: #6BB0FF;
    top: -150px;
    right: -100px;
}

.shape3 {
    width: 300px;
    height: 300px;
    background: #3B82F6;
    bottom: 100px;
    left: 15%;
}

.hero-content {
    text-align: center;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-text {
    color: #A0C4FF;
    font-size: 18px;
    margin-bottom: 25px;
}

.main-heading {
    color: white;
    font-size: 72px;
    font-weight: 100;
    line-height: 1.2;
    margin-bottom: 35px;
}

.subheading {
    color: #C7DBFF;
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.btn-primary {
    background: #4D9EFF;
    color: white;
    padding: 18px 45px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #3B82F6;
    transform: translateY(-3px);
}

.hero-stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 93px;
    max-width: 2038px;
    margin: 50px auto 0;
    padding: 0 40px;
}

.hero-stat-box {
    text-align: center;
    padding: 20px 15px;
    cursor: pointer;
    transition: transform 0.3s;
}

.hero-stat-box:hover {
    transform: translateY(-5px);
}

.hero-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

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

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 35px;
    border-radius: 15px;
    width: 90%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: #666;
}

.modal-content h2 {
    color: #001847;
    margin-bottom: 20px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.form-group input:focus {
    outline: none;
    border-color: #4D9EFF;
}

.submit-btn {
    background: #4D9EFF;
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #3B82F6;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Problem Solution Section */
.problem-solution-section {
    background: #ffffff;
    padding: 80px 120px;
}

.problem-solution-container {
    max-width: 1400px;
    margin: 0 auto;
}

.problem-solution-header {
    text-align: center;
    margin-bottom: 80px;
}

.problem-solution-main-title {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.problem-solution-description {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.problem-box, .solution-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
}

.problem-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}

.solution-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.box-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.box-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-box .box-icon {
    background: #fee2e2;
}

.solution-box .box-icon {
    background: #d1fae5;
}

.box-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.box-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-item {
    display: flex;
    gap: 16px;
}

.item-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.problem-box .item-icon {
    background: #fecaca;
}

.solution-box .item-icon {
    background: #a7f3d0;
}

.item-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.item-description {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

/* Products Section */
.products-section {
    background: #f8f9fa;
    padding: 80px 120px;
}

.products-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.products-image-container {
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: white;
}

.products-content {
    padding: 0 40px;
}

.products-main-heading {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
}

.products-description {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.products-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.products-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.products-check-icon {
    width: 28px;
    height: 28px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.products-feature-text {
    font-size: 17px;
    color: #1a1a1a;
    font-weight: 500;
}

.products-cta-buttons {
    display: flex;
    gap: 20px;
}

.products-btn {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.products-btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.products-btn-primary:hover {
    transform: translateY(-2px);
}

.products-btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.products-btn-secondary:hover {
    background: #2563eb;
    color: white;
}

/* Investing Section (Pitch) */
.investing-section {
    background: #ffffff;
    padding: 80px 120px;
}

.investing-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.investing-content {
    padding: 0 40px;
}

.investing-main-heading {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
}

.investing-description {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 50px;
}

.investing-image-container {
    position: relative;
}

/* Why Choose Section */
.why-choose-section {
    background: #f8f9fa;
    padding: 80px 120px;
}

.why-choose-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.why-choose-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.why-choose-text {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.why-choose-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-choose-point {
    display: flex;
    gap: 15px;
}

.why-choose-point-icon {
    width: 28px;
    height: 28px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-choose-point-text {
    flex: 1;
}

.why-choose-point-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.why-choose-point-text p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 80px 120px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #eef2f7;
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.7;
}

/* About Section */
.about-section {
    background: #f8f9fa;
    padding: 80px 120px;
}

.about-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.about-text {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.8;
}

/* Consultation Section */
.consultation-cta-section {
    background: linear-gradient(135deg, #001847 0%, #002c6b 100%);
    padding: 80px 120px;
    position: relative;
    overflow: hidden;
}

.consultation-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 5;
}

.consultation-content {
    flex: 1;
}

.consultation-heading {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 35px;
}

.consultation-features-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.consultation-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.consultation-check-icon {
    width: 28px;
    height: 28px;
    background: #4D9EFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-feature-text {
    font-size: 18px;
    color: white;
    font-weight: 500;
}

.consultation-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 380px;
}

.consultation-btn-primary, .consultation-btn-secondary {
    padding: 20px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.consultation-btn-primary {
    background: #5ba3ff;
    color: white;
}

.consultation-btn-secondary {
    background: white;
    color: #2563eb;
}

/* Footer */
.footer-main-section {
    background: #f8f9fa;
    padding: 80px 20px 30px;
}

.footer-main-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-main-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-main-logo-icon {
    width: 120px;
    height: 55px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.footer-main-logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
}

.footer-main-tagline {
    color: #4b5563;
    font-size: 16px;
    margin-bottom: 30px;
}

.footer-main-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-main-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: color 0.3s;
}

.footer-main-social-link:hover {
    color: #2563eb;
}

.footer-main-contact {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
}

.footer-contact-item {
    margin-bottom: 20px;
}

.footer-contact-label {
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-contact-value {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
}

.footer-main-copyright {
    color: #9ca3af;
    font-size: 14px;
}

.footer-main-copyright a {
    color: #9ca3af;
    text-decoration: none;
}



   



/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    header {
        padding: 20px 40px;
    }

    .main-heading {
        font-size: 56px;
    }

    .hero-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 600px;
    }

    .problem-solution-section,
    .products-section,
    .investing-section,
    .why-choose-section,
    .faq-section,
    .about-section,
    .consultation-cta-section {
        padding: 60px 40px;
    }

    .problem-solution-grid,
    .products-wrapper,
    .investing-wrapper,
    .why-choose-wrapper,
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-features-grid {
        grid-template-columns: 1fr;
    }

    .consultation-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .consultation-cta-buttons {
        width: 100%;
        min-width: unset;
    }

    .footer-main-contact {
        flex-direction: column;
        gap: 20px;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #001847 0%, #002366 100%);
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
        gap: 25px;
    }

    nav.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .logo-icon {
        width: 140px;
        height: 40px;
        font-size: 24px;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .main-heading {
        font-size: 36px;
    }

    .welcome-text {
        font-size: 16px;
    }

    .subheading {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary {
        width: 100%;
        padding: 16px 35px;
        font-size: 16px;
    }

    .hero-stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .hero-stat-number {
        font-size: 24px;
    }

    .hero-stat-label {
        font-size: 13px;
    }

    .modal-content {
        padding: 25px;
        width: 95%;
    }

    .problem-solution-section,
    .products-section,
    .investing-section,
    .why-choose-section,
    .faq-section,
    .about-section,
    .consultation-cta-section {
        padding: 50px 20px;
    }

    .problem-solution-main-title,
    .faq-header h2 {
        font-size: 36px;
    }

    .problem-solution-description {
        font-size: 16px;
    }

    .problem-box, .solution-box {
        padding: 30px 20px;
    }

    .box-title {
        font-size: 28px;
    }

    .item-title {
        font-size: 18px;
    }

    .products-content,
    .investing-content {
        padding: 0;
    }

    .products-main-heading,
    .investing-main-heading,
    .why-choose-content h2,
    .about-content h2,
    .consultation-heading {
        font-size: 32px;
    }

    .products-description,
    .investing-description,
    .why-choose-text,
    .about-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .products-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .products-btn {
        width: 100%;
    }

    .carousel-container {
        height: 300px;
    }

    .why-choose-image,
    .about-image {
        height: 300px;
    }

    .faq-question {
        font-size: 18px;
        padding: 20px;
    }

    .faq-answer-content {
        padding: 0 20px 20px;
        font-size: 16px;
    }

    .consultation-heading {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .consultation-features-list {
        flex-direction: column;
        gap: 15px;
    }

    .consultation-btn-primary,
    .consultation-btn-secondary {
        width: 100%;
        padding: 18px 30px;
        font-size: 16px;
    }

    .footer-main-logo-icon {
        width: 100px;
        height: 45px;
        font-size: 18px;
    }

    .footer-main-logo-text {
        font-size: 22px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .main-heading {
        font-size: 28px;
    }

    .problem-solution-main-title,
    .faq-header h2 {
        font-size: 28px;
    }

    .products-main-heading,
    .investing-main-heading,
    .why-choose-content h2,
    .about-content h2,
    .consultation-heading {
        font-size: 26px;
    }

    .box-title {
        font-size: 24px;
    }

    .carousel-container {
        height: 250px;
    }

    .products-feature-text {
        font-size: 15px;
    }

    .why-choose-point-text h4 {
        font-size: 16px;
    }

    .consultation-feature-text {
        font-size: 16px;
    }
}

/* Extra Small Mobile (max-width: 320px) */
@media (max-width: 320px) {
    header {
        padding: 12px 15px;
    }

    .logo-icon {
        width: 120px;
        height: 35px;
        font-size: 20px;
    }

    .main-heading {
        font-size: 24px;
    }

    .welcome-text {
        font-size: 14px;
    }

    .subheading {
        font-size: 14px;
    }

    .btn-primary {
        padding: 14px 25px;
        font-size: 15px;
    }

    .hero-stat-number {
        font-size: 20px;
    }

    .hero-stat-label {
        font-size: 12px;
    }

    .problem-solution-section,
    .products-section,
    .investing-section,
    .why-choose-section,
    .faq-section,
    .about-section,
    .consultation-cta-section {
        padding: 40px 15px;
    }

    .problem-solution-main-title,
    .faq-header h2 {
        font-size: 24px;
    }

    .products-main-heading,
    .investing-main-heading,
    .why-choose-content h2,
    .about-content h2,
    .consultation-heading {
        font-size: 22px;
    }

    .box-title {
        font-size: 20px;
    }

    .item-title {
        font-size: 16px;
    }

    .problem-box, .solution-box {
        padding: 25px 15px;
    }

    .carousel-container {
        height: 200px;
    }

    .why-choose-image,
    .about-image {
        height: 250px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 15px;
    }

    .faq-answer-content {
        padding: 0 15px 18px;
        font-size: 15px;
    }

    .consultation-btn-primary,
    .consultation-btn-secondary {
        padding: 16px 25px;
        font-size: 15px;
    }

    .footer-main-logo-icon {
        width: 90px;
        height: 40px;
        font-size: 16px;
    }

    .footer-main-logo-text {
        font-size: 20px;
    }

    .footer-contact-value {
        font-size: 16px;
    }

    .modal-content {
        padding: 20px;
    }

    .modal-content h2 {
        font-size: 20px;
    }
}


