/* ==================== GENERAL STYLES ==================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    font-weight: 700;
}

h1 {
    font-size: 2.5em;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #4A90E2;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

p {
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
    text-align: center;
    padding: 15px 20px;
    background-color: #1a1a1a;
    border-bottom: 3px solid #4A90E2;
}

.logo-text {
    margin: 0;
    padding: 0;
    color: #4A90E2;
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.brand-name {
    margin: 8px 0 15px 0;
    padding: 0;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

nav {
    margin-top: 10px;
}

nav a {
    color: #ffffff;
    margin: 0 15px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* ==================== HERO SECTION ==================== */
.hero-premium {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fb 0%, #f0f4f9 100%);
    border-bottom: 1px solid #e0e7ff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-premium h1 {
    color: #1a1a1a;
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-left {
    padding-right: 20px;
}

.value-props {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.value-icon {
    color: #4A90E2;
    font-size: 1.8em;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item p {
    margin: 0;
    line-height: 1.6;
}

.dashboard-placeholder {
    margin-top: 40px;
}

.dashboard-visual {
    background: linear-gradient(135deg, #e8f0ff 0%, #f0f4f9 100%);
    border: 2px solid #4A90E2;
    border-radius: 10px;
    padding: 60px 20px;
    text-align: center;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

.form-note {
    text-align: center;
    font-size: 0.85em;
    color: #999;
    margin-top: 15px;
}

.hero-right {
    display: flex;
    justify-content: center;
}

.audit-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
}

.audit-form h3 {
    color: #1a1a1a;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #777;
    font-size: 0.95em;
    margin-bottom: 25px;
}

.audit-form-control {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95em;
    transition: border-color 0.3s ease;
    background-color: #fafbfc;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #4A90E2;
    background-color: white;
}

.form-row textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==================== BUTTONS ==================== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4A90E2;
    color: white;
}

.btn-primary:hover {
    background-color: #357abd;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: #4A90E2;
    border: 2px solid #4A90E2;
}

.btn-secondary:hover {
    background-color: #f0f4f9;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1em;
}

.cta-button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ==================== WHAT WE DO SECTION ==================== */
.what-we-do {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.service-card {
    padding: 40px 30px;
    background: #f8f9fb;
    border-radius: 10px;
    border-left: 4px solid #4A90E2;
    transition: all 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.15);
}

.service-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    margin: 0;
}

/* ==================== PROBLEMS SOLVED ==================== */
.problems-solved {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.problems-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problem-item {
    padding: 30px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s ease;
}

.problem-item:hover {
    border-color: #4A90E2;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.1);
}

.problem-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #4A90E2;
    color: white;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.problem-item h4 {
    color: #1a1a1a;
}

.problem-item p {
    color: #666;
    margin: 0;
}

/* ==================== HOW WE HELP ==================== */
.how-we-help {
    padding: 100px 20px;
    background-color: #f8f9fb;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #4A90E2;
    color: white;
    border-radius: 50%;
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.process-step h4 {
    color: #1a1a1a;
    margin: 15px 0 10px 0;
}

.process-step p {
    color: #666;
    margin: 0;
    font-size: 0.95em;
}

/* ==================== FOUNDER SECTION ==================== */
.founder-section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-container {
    padding: 50px 40px;
    background: linear-gradient(135deg, #f8f9fb 0%, #f0f4f9 100%);
    border-radius: 12px;
    border-left: 5px solid #4A90E2;
}

.founder-content h2 {
    text-align: center;
}

.founder-content h3 {
    text-align: center;
    color: #4A90E2;
    margin-bottom: 25px;
}

.founder-content p {
    color: #555;
    line-height: 1.8;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-radius: 10px;
}

.credential-item {
    text-align: center;
}

.credential-item strong {
    color: #4A90E2;
    font-size: 1.1em;
}

.credential-item p {
    color: #666;
    margin: 8px 0 0 0;
    font-size: 0.95em;
}



/* ==================== FINAL CTA ==================== */
.final-cta {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fb 0%, white 100%);
    border-radius: 12px;
}

.final-cta h2 {
    font-size: 2.5em;
}

.final-cta p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

/* ==================== FOOTER ==================== */
footer {
    text-align: center;
    padding: 0;
    background-color: #1a1a1a;
    color: #999;
    border-top: 3px solid #4A90E2;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 50px 20px 30px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.footer-section p {
    color: #aaa;
    margin-bottom: 15px;
}

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

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

.footer-section a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    padding: 8px 12px;
    background-color: #333;
    border-radius: 5px;
    font-size: 0.9em;
}

.social-links a:hover {
    background-color: #4A90E2;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px;
    color: #666;
    font-size: 0.9em;
}

/* ==================== SERVICE SOLUTIONS ==================== */
.service-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.solution-card {
    padding: 30px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    border-color: #4A90E2;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
    transform: translateY(-5px);
}

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

.solution-icon {
    font-size: 2.5em;
    flex-shrink: 0;
}

.solution-header h3 {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.3em;
}

.solution-body {
    flex: 1;
    margin-bottom: 20px;
}

.solution-body p {
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95em;
    line-height: 1.6;
}

.solution-body p strong {
    color: #1a1a1a;
    font-weight: 600;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
    width: 100%;
    text-align: center;
}

.expectations {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.expectation-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fb;
    border-radius: 8px;
}

.exp-number {
    font-size: 2em;
    color: #4A90E2;
    font-weight: bold;
    flex-shrink: 0;
}

.expectation-item h4 {
    margin-top: 0;
    color: #1a1a1a;
}

.expectation-item p {
    margin: 5px 0 0 0;
    color: #666;
}

/* ==================== CONTACT PAGE ADDITIONS ==================== */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    padding: 40px 30px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #4A90E2;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.1);
}

.contact-card h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-card p {
    margin: 0 0 10px 0;
}

.contact-card a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
}

.contact-card a:hover {
    text-decoration: underline;
}

.small-text {
    font-size: 0.9em;
    color: #999;
    font-style: italic;
}

.form-row-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-section .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-section label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.contact-form-section input,
.contact-form-section textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95em;
    transition: border-color 0.3s ease;
    background-color: #fafbfc;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
    outline: none;
    border-color: #4A90E2;
    background-color: white;
}

.contact-form-section textarea {
    resize: vertical;
}
/* ==================== AUDIT FORM SECTION ==================== */
.audit-form-section {
    padding: 100px 20px;
    background-color: #f8f9fb;
    text-align: center;
}

.audit-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.audit-form-section h2 {
    color: #4A90E2;
    margin-bottom: 10px;
}

.audit-form-section > p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
}

.audit-form-control {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.audit-form-control input,
.audit-form-control textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.audit-form-control input:focus,
.audit-form-control textarea:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.audit-form-control textarea {
    resize: vertical;
    min-height: 100px;
}

.audit-form-control button {
    margin-top: 10px;
}
/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.6em;
    }

    .hero-premium h1 {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1.05em;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-left {
        padding-right: 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .problems-list {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .credentials {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .form-row-contact {
        grid-template-columns: 1fr;
    }

    .cta-button-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    nav a {
        margin: 0 10px;
        font-size: 12px;
    }

    .audit-form {
        max-width: 100%;
    }

    .final-cta h2 {
        font-size: 2em;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.faq-container h2 {
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.faq-item {
    text-align: left;
    padding: 30px;
    background: #f8f9fb;
    border-radius: 10px;
    border-left: 4px solid #4A90E2;
    transition: all 0.3s ease;
}

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

.faq-item h3 {
    color: #4A90E2;
    margin-bottom: 12px;
    font-size: 1.2em;
}

.faq-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ==================== BREADCRUMBS ==================== */
.breadcrumbs {
    padding: 20px;
    background-color: #f8f9fb;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs a {
    color: #4A90E2;
    text-decoration: none;
    margin: 0 8px;
    font-size: 0.95em;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #999;
    margin: 0 8px;
}

/* ==================== BLOG SECTION ==================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: #4A90E2;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.15);
    transform: translateY(-5px);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #e8f0ff 0%, #f0f4f9 100%);
}

.blog-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.blog-card-title {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.blog-card-excerpt {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-link {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: auto;
}

.blog-card-link:hover {
    text-decoration: underline;
}
/* ==================== STICKY CTA BUTTON ==================== */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.3);
    border-radius: 50px;
    animation: slideIn 0.5s ease-out;
}

.sticky-cta a {
    display: inline-block;
    padding: 14px 28px;
    background-color: #4A90E2;
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95em;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background-color: #357abd;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 0.9em;
    }
}

/* ==================== MODALS ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal h2 {
    color: #4A90E2;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

.modal p {
    color: #666;
    text-align: center;
    margin-bottom: 25px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.modal-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95em;
    transition: border-color 0.3s;
}

.modal-form input:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.modal-button {
    padding: 12px 24px;
    background-color: #4A90E2;
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.modal-button:hover {
    background-color: #357abd;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ==================== MODAL POPUPS ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal h2 {
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: left;
    font-size: 1.8em;
}

.modal p {
    color: #555;
    margin-bottom: 25px;
    text-align: left;
    line-height: 1.6;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95em;
    transition: border-color 0.3s ease;
}

.modal-form input:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.modal-form button {
    padding: 14px 32px;
    background-color: #4A90E2;
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-form button:hover {
    background-color: #357abd;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.modal-cta-btn {
    display: block;
    text-align: center;
    padding: 14px 32px;
    background-color: #4A90E2;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.modal-cta-btn:hover {
    background-color: #357abd;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .modal h2 {
        font-size: 1.6em;
    }
}
