* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #494C55;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #2C2F36 0%, #494C55 100%);
    padding: 1rem 0;
    border-bottom: 3px solid #98D0D7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    height: 60px;
    width: auto;
    background-color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav a:hover,
nav a.active {
    color: #98D0D7;
    background-color: rgba(152, 208, 215, 0.1);
}

/* Hero Section with Slideshow */
.hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(73, 76, 85, 0.8);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.hero-content p {
    font-size: 1.2rem;
    color: #FFFFFF;
    max-width: 600px;
}

/* Slideshow navigation dots */
.slideshow-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #98D0D7;
}

/* Arrow navigation */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(152, 208, 215, 0.8);
    color: #494C55;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 3;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background-color: #98D0D7;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    margin-bottom: 3rem;
}

h1, h2, h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid #98D0D7;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    color: #98D0D7;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #FFFFFF;
}

/* Cards */
.card {
    background-color: rgba(152, 208, 215, 0.1);
    border: 1px solid #98D0D7;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(152, 208, 215, 0.3);
}

.card h3 {
    color: #98D0D7;
    margin-bottom: 1rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Executive Profiles */
.executive-card {
    background-color: rgba(152, 208, 215, 0.1);
    border: 1px solid #98D0D7;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.executive-card:hover {
    transform: translateY(-5px);
}

.executive-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid #98D0D7;
}

.executive-card h3 {
    color: #98D0D7;
    margin-bottom: 0.5rem;
}

.executive-title {
    color: #B3D4DA;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial {
    background-color: rgba(152, 208, 215, 0.1);
    border: 1px solid #98D0D7;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background-color: #FFFFFF;
    padding: 5px;
    border-radius: 4px;
}

.author-info h4 {
    color: #98D0D7;
    margin-bottom: 0.25rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #98D0D7;
    border-radius: 4px;
    background-color: rgba(73, 76, 85, 0.8);
    color: #FFFFFF;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #98D0D7;
    box-shadow: 0 0 0 2px rgba(152, 208, 215, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #98D0D7;
    color: #494C55;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #7BC4CC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(152, 208, 215, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #98D0D7;
    color: #98D0D7;
}

.btn-secondary:hover {
    background-color: #98D0D7;
    color: #494C55;
}

/* Footer */
footer {
    background-color: #3A3D44;
    border-top: 3px solid #98D0D7;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-content p {
    margin: 0;
    color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #494C55;
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid #98D0D7;
    }
    
    nav ul.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .prev, .next {
        display: none; /* Hide arrows on mobile */
    }
    
    main {
        padding: 2rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}