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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #f7fafc;
}

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

.ssp-hero-banner {
    background: linear-gradient(135deg, #e91e63 0%, #1e88e5 50%, #0d47a1 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.ssp-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
}

.ssp-hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.ssp-hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.ssp-main-content {
    background: white;
    padding: 4rem 0;
}

.ssp-intro-section {
    margin-bottom: 4rem;
}

.ssp-two-column {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.ssp-text-content h2 {
    color: #e91e63;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.ssp-text-content h2::before {
    content: '⭐';
    position: absolute;
    left: 0;
    top: 0;
}

.ssp-text-content p {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.ssp-image-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.ssp-highlight-block {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(30, 136, 229, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    border-left: 5px solid #e91e63;
}

.ssp-highlight-block h2 {
    color: #1e88e5;
    margin-bottom: 1.5rem;
}

.ssp-highlight-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.ssp-highlight-list li {
    padding: 1rem;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.ssp-highlight-list li::before {
    content: "✅";
}

.ssp-services-section {
    margin: 4rem 0;
}

.ssp-services-section > h2 {
    color: #e91e63;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.ssp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.ssp-service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.ssp-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.ssp-service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ssp-service-card-body {
    padding: 1.5rem;
}

.ssp-service-card h3 {
    color: #1e88e5;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ssp-service-card h3::before {
    content: '💛';
}

.ssp-service-list {
    list-style: none;
    padding: 0;
}

.ssp-service-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4a5568;
}

.ssp-service-list li::before {
    content: "•";
    color: #e91e63;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.3rem;
}

.ssp-service-card p {
    color: #718096;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.ssp-why-choose {
    background: linear-gradient(135deg, #e91e63 0%, #1e88e5 100%);
    color: white;
    padding: 4rem;
    border-radius: 25px;
    margin: 4rem 0;
}

.ssp-why-choose h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.ssp-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.ssp-why-item {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ssp-why-icon {
    font-size: 1.5rem;
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ssp-areas-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.ssp-areas-section h2 {
    color: #1e88e5;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ssp-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.ssp-area-badge {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    color: #4a5568;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    font-weight: 500;
}

.ssp-area-badge:hover {
    background: linear-gradient(135deg, #e91e63, #1e88e5);
    color: white;
    transform: scale(1.05);
}

.ssp-contact-section {
    background: linear-gradient(135deg, #e91e63 0%, #1e88e5 100%);
    color: white;
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.3);
}

.ssp-contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.ssp-contact-section > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

.ssp-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ssp-contact-item {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.ssp-contact-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ssp-tagline {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .ssp-hero-title {
        font-size: 2rem;
    }
    
    .ssp-two-column {
        grid-template-columns: 1fr;
    }
    
    .ssp-services-grid {
        grid-template-columns: 1fr;
    }
    
    .ssp-why-choose, .ssp-contact-section {
        padding: 2rem;
    }
}
