* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background-color: #242424;
    color: #ffffff;
}

::-moz-selection {
    background-color: #242424;
    color: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, #4c86e8 0%, #6b9ef0 100%);
    padding: 30px 0 0 0;
}

.logo {
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero {
    background: linear-gradient(135deg, #4c86e8 0%, #6b9ef0 100%);
    color: #ffffff;
    padding: 80px 0 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 18px solid #000000;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero h1 {
    position: relative;
    z-index: 1;
    margin: 0;
}

.services {
    background-color: #ffffff;
    padding: 80px 0;
}

.services h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
    border-left: 4px solid #c5d8f7;
    opacity: 1;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100%;
}

.service-icon {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.service-card h3 {
    flex-shrink: 0;
}

.service-card .service-summary {
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-card .expand-btn {
    margin-top: auto;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card.expanded .service-icon svg path {
    fill: #ffffff;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 134, 232, 0.3);
}

.service-card.expanded {
    background-color: #4c86e8;
    border-left: 4px solid #4c86e8;
    cursor: default;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: #242424;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card.expanded h3 {
    color: #ffffff;
}

.service-card .service-summary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #000000;
    line-height: 1.8;
    transition: color 0.3s ease;
    margin-bottom: 20px;
}

.service-card.expanded .service-summary {
    color: #ffffff;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    font-size: 0.8rem;
}

.service-card.expanded .service-details {
    max-height: 1000px;
}

.service-details ul {
    list-style: none;
    margin-bottom: 15px;
    padding-left: 0;
    text-align: left;
    width: 100%;
}

.service-details li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: #ffffff;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.service-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

.expand-btn {
    background-color: #4c86e8;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.expand-btn:hover {
    background-color: #3a6fcc;
    transform: scale(1.05);
}

.service-card.expanded .expand-btn {
    background-color: #ffffff;
    color: #4c86e8;
}

.service-card.expanded .expand-btn:hover {
    background-color: #f0f0f0;
}

.contact {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 18px solid #C5D8F7;
}

.contact::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(76, 134, 232, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(76, 134, 232, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.contact h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #4c86e8;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #c5d8f7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 134, 232, 0.15);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #000000;
}

.contact-item a {
    color: #4c86e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #3a6fcc;
    text-decoration: underline;
}

footer {
    background-color: #000000;
    color: #7f7f7f;
    padding: 30px 0;
    text-align: center;
}

footer p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 5px 0;
}

footer .license-text {
    color: #a8b4ba;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .services h2,
    .contact h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .services,
    .contact {
        padding: 50px 0;
    }
    
    .logo {
        max-width: 280px;
    }
}