.summary-container {
    max-width: 1200px;
    margin: 0 auto;
}

.summary-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Price Cards */
.price-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.price-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2563eb;
}

.price-breakdown {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* Contract Choices */
.contract-choices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contract-choice {
    position: relative;
    cursor: pointer;
}

.choice-content {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.contract-choice input:checked + .choice-content {
    border-color: #2563eb;
    background: #eff6ff;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-item {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.service-icon {
    width: 32px;
    height: 32px;
    margin-right: 1rem;
    background: #2563eb;
    border-radius: 50%;
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.timeline-month {
    position: relative;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
}

.month-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.month-number {
    width: 32px;
    height: 32px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.month-tasks {
    list-style: none;
    padding: 0;
}

.month-tasks li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.month-tasks li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.result-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 2rem auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    outline: none;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.btn-primary,
.btn-secondary {
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #f8fafc;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.btn-secondary:hover {
    background: #eff6ff;
    transform: translateY(-1px);
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.summary-section {
    animation: slideIn 0.5s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .price-cards,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .summary-section {
        padding: 1.5rem;
    }
}