:root {
    --primary-green: #2E8B57;
    /* SeaGreen - approximation of the flyer green */
    --primary-dark: #1E5B39;
    --accent-green: #7CFC00;
    /* LawnGreen - for the bright highlights */
    --text-dark: #333;
    --text-white: #fff;
    --bg-light: #f8f9fa;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--text-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--text-white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.logo i {
    color: var(--primary-green);
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--text-white);
    color: var(--primary-green);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--text-white);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
    background-color: var(--text-white);
}

.hero-bg-texture {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 60%;
    height: 100%;
    background-image: url('brick_texture.png');
    background-size: 300px;
    opacity: 1;
    z-index: 0;
    /* Create a diagonal clip */
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.diagonal-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 50%;
    background: linear-gradient(135deg, var(--primary-green) 50%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 40px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 0.9;
    color: var(--primary-green);
    text-transform: uppercase;
    margin-bottom: 40px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

/* Specialist Box */
.specialist-box {
    background: var(--text-white);
    border: 3px solid var(--primary-green);
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.specialist-box h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.divider {
    height: 2px;
    background-color: var(--accent-green);
    width: 50%;
    margin: 15px auto;
}

.corner-triangle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, transparent 50%, var(--accent-green) 50%);
    border-bottom-right-radius: 15px;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    position: relative;
    z-index: 10;
    background-color: transparent;
    /* allow brick see-through if needed, but easier to keep white for readability */
    background: linear-gradient(to bottom, transparent, var(--text-white) 20%);
}

.services-list {
    max-width: 600px;
    margin: 0 auto;
    /* Left align visually but centered in layout */
    text-align: center;
}

.service-item {
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: transform 0.2s;
}

.service-item:hover {
    transform: translateX(10px);
    background: var(--bg-light);
}

.service-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.service-item h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
}

.service-item.highlight {
    margin-top: 20px;
    font-weight: 700;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

/* Footer */
footer {
    background-color: var(--primary-green);
    color: var(--text-white);
    padding: 40px 0 20px;
    text-align: center;
    position: relative;
    z-index: 20;
}

.footer-cta {
    margin-bottom: 30px;
}

.footer-cta p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .logo span {
        display: none;
        /* Hide text on small screens if needed, or reduce size */
    }

    .hero-bg-texture {
        width: 100%;
        opacity: 0.5;
    }
}