﻿p {
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.software-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    padding: 80px 15px;
    text-align: center;
}

.software-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.software-hero .subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
    color: #fff;
}

.trust-badge {
    margin: 0 auto 30px;
    font-size: 0.95em;
    opacity: 0.9;
}

.trust-badge span {
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 10px 20px;
    display: inline-block;
}

/* Introduction Section */
.intro-section {
    padding: 60px 15px;
    background: #f8fafc;
}

.intro-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #1e3a8a;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    border-top: 4px solid #2563eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.intro-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #334155;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* Showcase Sections */
.showcase-section {
    padding: 60px 15px;
    background: #fff;
}

.showcase-section.alt {
    background: #f8fafc;
}

.showcase-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.showcase-intro {
    text-align: center;
    font-size: 1.1em;
    color: #64748b;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Example Card */
.example-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border-left: 5px solid #2563eb;
}

.example-card h3 {
    color: #1e3a8a;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.example-card p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 15px;
}

.example-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.example-feature {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid #3b82f6;
}

.example-feature h4 {
    color: #1e3a8a;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.example-feature ul {
    list-style: none;
    padding: 0;
}

.example-feature li {
    padding: 5px 0 5px 20px;
    position: relative;
    color: #334155;
}

.example-feature li:before {
    content: '✓';
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.booking-uses {
    max-width: 700px;
    background: #f0f9ff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    margin: 30px auto ;
}

.booking-uses h2 {
    color: #1e3a8a;
    font-size: 1.5em;
    text-align: left;
    margin-bottom: -20px;
}

/* Toolbox Grid */
.toolbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.tool-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #3b82f6;
    text-align: center;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

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

.tool-card h3 {
    color: #1e3a8a;
    font-size: 1.1em;
    margin-bottom: 8px;
    font-weight: 600;
}

.tool-card p {
    color: #64748b;
    font-size: 0.9em;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 15px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 50px;
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Who It's For */
.who-section {
    padding: 60px 15px;
    background: #fff;
}

.who-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 50px;
    color: #1e3a8a;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.who-card {
    background: #f8fafc;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid #2563eb;
}

.who-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.who-card h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.who-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 60px 15px;
    background: #f8fafc;
}

.process-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 50px;
    color: #1e3a8a;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.process-step h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.process-step p {
    color: #64748b;
    font-size: 0.95em;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 60px 15px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #fff;
}

.cta-button {
    background: #fff;
    color: #2563eb;
    padding: 18px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Form Section */
.contact-section {
    padding: 60px 15px;
    background: #fff;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.contact-intro {
    text-align: center;
    font-size: 1.1em;
    color: #64748b;
    margin-bottom: 40px;
}

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

/* Media Queries */
@media (max-width: 968px) {
    .toolbox-grid,
    .benefits-grid,
    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .software-hero {
        background: linear-gradient(to bottom, #1e3a8a 0%, #2563eb 100%);
    }

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

    .software-hero .subtitle {
        font-size: 1.1em;
    }

    .toolbox-grid,
    .benefits-grid,
    .who-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .intro-content {
        padding: 30px 20px;
    }

    .example-card {
        padding: 30px 20px;
    }

    h2 {
        font-size: 1.8em !important;
    }

    .cta-section h2 {
        font-size: 2em !important;
    }

    .benefits-section {
        background: linear-gradient(to bottom, #1e3a8a 0%, #2563eb 100%);
    }

    .cta-section {
        background: linear-gradient(to bottom, #1e3a8a 0%, #2563eb 100%);
    }
}

@media (max-width: 480px) {
    .software-hero {
        padding: 60px 15px;
    }

    .showcase-section,
    .intro-section,
    .benefits-section,
    .who-section,
    .process-section {
        padding: 40px 15px;
    }
}