:root {
    --font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
    --line-height: 1.6;
    --font-weight: 400;

    --color-primary: #D32F2F;
    /* Bold Red */
    --color-primary-dark: #B71C1C;
    --color-text: #333333;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F5F5F5;
    --color-border: #E0E0E0;

    --spacing-unit: 1rem;
    --container-width: 1000px;
}

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

body {
    font-family: var(--font-family);
    line-height: var(--line-height);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-unit);
}

h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--color-primary);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem var(--spacing-unit);
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn:hover {
    background-color: var(--color-primary-dark);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    /* Background Image Placeholder - Replace with local asset */
    background-image: url('images/hero_background.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-icons a {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: var(--color-text);
    transition: transform 0.2s;
}

.floating-icons a:hover {
    transform: scale(1.1);
    color: var(--color-primary);
}

/* Carousel Section */
.carousel-section {
    padding: 3rem 0;
    background-color: var(--color-bg-alt);
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    /* Space for buttons */
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.carousel-item {
    flex: 0 0 auto;
    width: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.carousel-item:hover {
    transform: translateY(-5px);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-weight: bold;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* Marketing Section */
.marketing-section {
    background: white;
}

.marketing-list li {
    margin-bottom: 1rem;
    padding-left: 20px;
    position: relative;
}

.marketing-list li::before {
    content: '✓';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    background-color: white;
}

.table-wrapper {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    min-width: 600px;
    /* Ensure table doesn't squish too much */
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.pricing-table th {
    background-color: var(--color-bg-alt);
    font-weight: 600;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-note {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Contact Section */
.contact-section {
    background-color: var(--color-bg-alt);
    border-radius: 20px;
    margin-bottom: 4rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group.half {
    flex-direction: row;
    gap: 1rem;
}

.form-group.half>div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.site-footer {
    text-align: center;
    padding: 2rem;
    background-color: #333;
    color: white;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .form-group.half {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}