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

:root {
    --primary-color: #232323;
    --secondary-color: #3E3E3E;
    --accent-color: #4A4A4A;
    --text-color: #ffffff;
    --light-text: #e0e0e0;
    --dark-text: #232323;
    --border-color: #444;
    --container-width: 1200px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    background-color: #fff;
    color: var(--dark-text);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

/* Header styles */
header {
    padding: 20px 0;
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #ccc;
}

/* Hero section */
.hero {
    padding: 80px 0;
    background-color: var(--primary-color);
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    margin-bottom: 30px;
    color: var(--light-text);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Business motion section */
.business-motion {
    padding: 80px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.business-motion h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.business-motion > p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.motion-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: left;
}

.motion-text p {
    margin-bottom: 15px;
    color: var(--light-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--accent-color);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

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

.icon {
    margin-bottom: 20px;
}

.icon img {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--light-text);
}

/* Testimonials section */
.testimonials {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.testimonial-header p {
    max-width: 600px;
    margin: 0 auto 20px;
    color: var(--light-text);
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.star-rating img {
    width: 20px;
    height: 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--accent-color);
    padding: 30px;
    border-radius: 8px;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    color: var(--light-text);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Strategic services section */
.strategic-services {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header p {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.services-header h2 {
    font-size: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.strategic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.strategic-card {
    background-color: var(--accent-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.strategic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.strategic-icon {
    margin-bottom: 20px;
}

.strategic-icon img {
    width: 50px;
    height: 50px;
}

.strategic-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.strategic-card p {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.learn-more {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.learn-more:hover {
    transform: translateX(5px);
}

/* Contact section */
.contact {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    padding: 15px;
    border-radius: 4px;
    border: none;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-family: inherit;
}

input::placeholder {
    color: #aaa;
}

.submit-btn {
    background-color: #fff;
    color: var(--dark-text);
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-contact h4,
.footer-map h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: var(--light-text);
}

.map-container {
    width: 200px;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: var(--light-text);
    transition: all 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #fff;
}

/* Cookie popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-width: 400px;
    width: 100%;
    display: none;
}

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

.cookie-content {
    text-align: center;
}

.cookie-content p {
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .services-grid,
    .strategic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .strategic-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
}