/* Guarantee Section */
.guarantee-section {
    padding: 5rem 1rem;
    background: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.05));
}

.guarantee-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.guarantee-header {
    text-align: center;
    margin-bottom: 3rem;
}

.guarantee-title {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
    font-weight: bold;
}

.guarantee-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.guarantee-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.guarantee-item i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.guarantee-item h3 {
    font-size: 1.25rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
    font-weight: 600;
}

.guarantee-item p {
    color: #666;
    line-height: 1.6;
}

.guarantee-cta {
    text-align: center;
    margin-top: 3rem;
}

.guarantee-pdf {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
}

.guarantee-pdf:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-title {
        font-size: 2rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    padding: calc(var(--header-height) + 0rem) 1rem 3rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -25%;
    width: 150%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(-3deg);
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header .page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-header {
        padding: calc(var(--header-height) + 0rem) 1rem 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header .page-subtitle {
        font-size: 1.1rem;
    }
}

.services-detail-section {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.section-header {
    max-width: var(--max-width);
    margin: 0 auto 3rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card h3 {
    color: var(--dark-bg);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-card h3 i {
    color: var(--primary-color);
    font-size: 2rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-card ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.service-card ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}


.service-card ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Wide card styles */
.service-card.wide-card {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
}

.service-card .two-column-list ul {
    columns: 2;
    column-gap: 2rem;
    margin: 1.5rem 0;
}

.service-card .two-column-list li {
    break-inside: avoid;
    margin-bottom: 1rem;
}

/* Responsive adjustments for the two-column list */
@media (max-width: 768px) {
    .service-card .two-column-list ul {
        columns: 1;
    }
    
    .service-card.wide-card {
        margin-top: 1rem;
    }
}

/* Option 1: Soft shadow and rounded corners */
.elegant-image {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.elegant-image:hover {
    transform: scale(1.02);
}

/* Option 2: Frame effect */
.frame-image {
    border: 8px solid white;
    box-shadow: 0 0 0 1px #ccc,
                2px 2px 8px rgba(0, 0, 0, 0.3);
    padding: 4px;
}

/* Option 3: Modern gradient border */
.gradient-border {
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #12c2e9, #c471ed, #f64f59) border-box;
    border-radius: 12px;
}

/* Option 4: Polaroid effect */
.polaroid {
    background: white;
    padding: 15px 15px 40px 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}