/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c1d72e;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    background-color: #c1d72e;
    color: #333;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #aec023;
}

.btn-secondary {
    background-color: #f2f2f2;
    color: #333;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #e5e5e5;
}

/* Header */
header {
    padding: 20px 0;
    background-color: #fff;
}

.logo {
    font-weight: 700;
    font-size: 20px;
}

/* Hero section */
.hero {
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
    border-radius: 8px;
    padding: 20px;
}

.tagline {
    color: #85a91f;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Contact form section */
.contact-form-section {
    background-color: #f5f5f5;
    padding: 40px 0;
}

form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

/* Expectations section */
.expectations {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.modules {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.module {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    flex: 1;
    min-width: 250px;
}

.module-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

/* Why InvestWeg section */
.why-investweg {
    padding: 60px 0;
}

.laptop-image {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
}

/* Testimonials section */
.testimonials {
    padding: 60px 0;
    background-color: #fff;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    padding: 20px 0;
}

.testimonial:target,
#testimonial-2 {  /* Default to show second testimonial */
    display: block;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.rating img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.stars {
    color: #ffc107;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}

.author {
    text-align: right;
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #c1d72e;
}

/* Contact info section */
.contact-info {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-item {
    flex: 1;
    min-width: 200px;
}

.contact-item h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.footer-logo {
    font-weight: 700;
    font-size: 20px;
}

.footer-rating {
    display: flex;
    align-items: center;
}

.rating-value {
    margin: 0 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    margin-left: 20px;
    color: #fff;
}

/* Cookie popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    background-color: #fff;
    padding: 20px;
    max-width: 1140px;
    margin: 0 auto;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column-reverse;
    }
    
    .hero-image {
        margin-bottom: 30px;
    }
    
    .modules {
        gap: 30px;
    }
    
    .module {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .module {
        min-width: 100%;
    }
    
    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-main, .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-rating {
        margin-top: 20px;
        justify-content: center;
    }
    
    .footer-links {
        margin-top: 20px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}


.thank-section {
    padding: 100px 0;
    text-align: center;
}