/* RESET ET BASES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #F8F9FA;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #4A90E2;
    transition: all 0.3s ease;
}

a:hover {
    color: #1F3B57;
}

h1, h2, h3, h4, h5, h6 {
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #17A589;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    background-color: #1976D2;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #1F3B57;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

ul {
    list-style: none;
}

/* HEADER */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1F3B57;
    text-transform: lowercase;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #2C3E50;
    font-weight: 600;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #17A589;
    transition: width 0.3s;
}

nav ul li a:hover:after {
    width: 100%;
}

.phone a {
    font-weight: 600;
    color: #1F3B57;
}

/* BANNER */
.banner {
    padding: 100px 0;
    background-color: #F8F9FA;
    position: relative;
}

.banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-content {
    flex: 1;
    padding-right: 50px;
}

.banner-image {
    flex: 1;
    text-align: center;
}

.banner-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ABOUT */
.about {
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

/* SERVICES */
.services {
    background-color: #F8F9FA;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3, 
.service-card p, 
.service-card ul, 
.service-card .price, 
.service-card .btn {
    margin: 15px;
}

.service-card ul {
    padding-left: 20px;
    list-style-type: disc;
}

.service-card ul li {
    margin-bottom: 5px;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1F3B57;
    text-align: center;
    margin: 20px 0;
}

.service-card .btn {
    display: block;
    text-align: center;
    margin: 20px 15px;
}

/* ADVANTAGES */
.advantages {
    background-color: #fff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.advantage {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    background-color: #F8F9FA;
}

.advantage:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3rem;
    color: #17A589;
    margin-bottom: 20px;
}

/* TESTIMONIALS */
.testimonials {
    background-color: #F8F9FA;
    position: relative;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.testimonial-content {
    position: relative;
    padding: 0 20px 20px;
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-content:before {
    content: '"';
    font-size: 5rem;
    color: #17A589;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.author-name {
    font-weight: 600;
    color: #1F3B57;
}

.author-company {
    font-size: 0.9rem;
    color: #777;
}

/* CONTACT */
.contact {
    background-color: #fff;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-hours {
    margin-top: 30px;
    padding: 20px;
    background-color: #F8F9FA;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.required {
    color: red;
}

/* FAQ */
.faq {
    background-color: #F8F9FA;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    padding: 20px;
    margin: 0;
    background-color: #1F3B57;
    color: white;
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
}

.faq-answer {
    padding: 20px;
    border-top: 1px solid #eee;
}

/* LEGAL PAGES */
.legal {
    padding: 60px 0;
}

.legal h1 {
    text-align: center;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    text-align: left;
}

.legal-content h2:after {
    left: 0;
    transform: none;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 20px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.legal-content ul li {
    margin-bottom: 5px;
}

.back-link {
    text-align: center;
    margin-top: 30px;
}

/* THANK YOU PAGE */
.thank-you {
    padding: 80px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #17A589;
    border-radius: 15px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.thank-you h1 {
    color: #17A589;
    margin-bottom: 30px;
}

.next-steps {
    background-color: #F8F9FA;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
}

.next-steps h2 {
    margin-top: 0;
}

.next-steps ol {
    padding-left: 20px;
    margin-bottom: 0;
}

.next-steps ol li {
    margin-bottom: 10px;
}

.contact-info-list {
    display: inline-block;
    text-align: left;
    margin: 20px 0 30px;
}

.contact-info-list li {
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background-color: #1F3B57;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about, .footer-links, .footer-legal, .footer-contact {
    flex: 1;
    min-width: 200px;
}

footer h3 {
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #17A589;
}

footer a {
    color: #eee;
}

footer a:hover {
    color: #17A589;
}

footer ul li {
    margin-bottom: 10px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .banner .container, 
    .about-content {
        flex-direction: column;
    }
    
    .banner-content, 
    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
        order: 2;
    }
    
    .banner-image, 
    .about-image {
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    nav {
        display: none;
    }
    
    .logo a {
        font-size: 1.5rem;
    }
    
    .service-card, 
    .testimonial {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .phone {
        display: none;
    }
} 