/* Global styles */
:root {
    --primary-color: #2C32FF;
    --text-color: #000000;
    --light-text: #656565;
    --gray-bg: #E7E7E7;
    --light-gray: #F0F1FA;
    --divider-color: #F1F1F1;
    --service-item-color: #4A4A4A;
    --service-title-color: #333333;
    --underline-color: #FFCB5D;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header styles */
header {
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

.logo img {
    height: 100%;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul {
    display: flex;
    gap: 30px;
    font-size: 14px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 38px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2228e0;
}

.cta-button.small {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
}

.cta-button img {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

/* Hero section */
.hero {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 100px 0;
    border-radius: 28px;
    margin: 0 20px;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('images/home-hero.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 60%;
    padding: 0 20px;
}

h1 {
    font-size: 54px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.underline {
    display: block;
    margin: 10px 0 30px;
    max-width: 100%;
}

.hero p {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 90%;
}

/* How section */
.how {
    padding: 100px 0;
    text-align: center;
}

h2 {
    font-size: 54px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 60px;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 50px;
}

.feature {
    flex: 1;
    max-width: 350px;
    margin: 0 auto;
}

.feature-img {
    width: 200px;
    height: auto;
    margin-bottom: 25px;
}

.feature h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--service-item-color);
}

.feature p em {
    font-style: italic;
}

/* Services section */
.services {
    padding: 50px 0 100px;
}

.services h2 {
    text-align: center;
    margin-bottom: 60px;
}

.service-category {
    margin-bottom: 60px;
}

.service-category h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: 300px 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.service-image {
    background-color: var(--gray-bg);
    border-radius: 19px;
    height: 240px;
    width: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-list ul {
    list-style-type: disc;
    padding-left: 20px;
}

.service-list li {
    font-size: 20px;
    color: var(--service-item-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Footer */
footer {
    padding: 50px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 20px;
    color: var(--light-text);
    font-size: 18px;
}

.footer-links span {
    color: var(--light-text);
}

.footer-cta {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.divider {
    height: 1px;
    background-color: var(--divider-color);
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
}

.email {
    color: var(--light-text);
    font-size: 18px;
}

/* Responsive styles */
@media (max-width: 768px) {
    h1, h2 {
        font-size: 36px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .feature {
        max-width: 100%;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 180px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-image {
        grid-column: span 2;
    }
} 