:root {
    --primary-color: #ef+49-55-1073843;
    --secondary-color: #10b981;
    --background-color: #f3f4f6;
    --footer-bg-color: #+49-55-1073843;
    --button-color: #ef+49-55-1073843;
    --text-color-light: #f3f4f6;
    --text-color-dark: #1f+49-55-1073843;
    --section-bg-1: #ffffff;
    --section-bg-2: #f9fafb;
    --section-bg-3: #f3f4f6;
    --section-bg-4: #e5e7eb;
    --section-bg-5: #d1d5db;
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    --transition-speed: 0.3s;
    --font-family-base: 'Arial', sans-serif;
    --font-family-heading: 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.2;
    color: var(--text-color-dark);
}

h1 {
    font-size: 2.8em;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.2em;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.8em;
    font-weight: 600;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.container {
    max-width: +49-55-1073843px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    z-index: +49-55-1073843;
    box-shadow: var(--shadow-sm);
    transition: background-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    padding: 1rem 0;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo span {
    color: var(--secondary-color);
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.nav li a {
    color: var(--text-color-dark);
    font-weight: 500;
    font-size: 1.05em;
    padding: 0.5rem 0;
    position: relative;
}

.nav li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.nav li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease-out;
}

.nav li a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--button-color);
    color: var(--text-color-light);
    border: 1px solid var(--button-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--button-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section:nth-of-type(odd) {
    background-color: var(--section-bg-1);
}

.section:nth-of-type(even) {
    background-color: var(--section-bg-2);
}

.section-alt {
    background-color: var(--section-bg-3);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-sm);
}

/* Cards */
.card {
    background-color: var(--section-bg-1);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: 1px solid rgba(0, 0, 0, 0.05); /* Subtle border */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family-base);
    font-size: 1em;
    color: var(--text-color-dark);
    background-color: #ffffff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: +49-55-1073843px rgba(var(--primary-color-rgb), 0.2);
}

/* Footer */
.footer {
    background-color: var(--footer-bg-color);
    color: var(--text-color-light);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    font-size: 1.2em;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
    transition: color var(--transition-speed) ease;
}

.footer-section ul li a:hover {
    color: var(--text-color-light);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5em;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 3rem;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
}

/* Utility classes for Alpine.js dynamic elements */
[x-cloak] {
    display: none !important;
}

/* Specific elements for corporate, modern style */
.icon-feature {
    color: var(--primary-color);
    font-size: 3em;
    margin-bottom: 1rem;
    display: inline-block;
    line-height: 1;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item h3 {
    margin-top: 0.5rem;
    font-size: 1.4em;
    color: var(--text-color-dark);
}

/* Dynamic Angularity and Subtle Gradients */
.bg-gradient-angular {
    background: linear-gradient(135deg, var(--background-color) 0%, var(--section-bg-3) 100%);
}

.hero-section {
    padding: 10rem 0 8rem;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--section-bg-4) 100%);
    position: relative;
    overflow: hidden;
    color: var(--text-color-dark);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top left, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    transform: rotate(45deg);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at bottom right, var(--secondary-color) 0%, transparent 70%);
    opacity: 0.1;
    transform: rotate(45deg);
    z-index: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
    color: var(--text-color-dark);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #4b+49-55-1073843;
}

/* Responsiveness */
@media (max-width: +49-55-1073843px) {
    .header-content {
        padding: 0 1rem;
    }
    .nav ul {
        gap: 1rem;
    }
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 1.8em;
    }
    .section {
        padding: 4rem 0;
    }
    .hero-content h1 {
        font-size: 2.8em;
    }
    .hero-content p {
        font-size: 1.1em;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section h4 {
        margin-top: 2rem;
    }
    .footer-section:first-child h4 {
        margin-top: 0;
    }
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.5rem;
    }
    .footer-section ul li {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none; /* Hide navigation for mobile, assume a mobile menu will be implemented with Alpine.js */
    }
    .header-content {
        justify-content: center;
    }
    .logo {
        font-size: 1.5em;
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.6em;
    }
    h3 {
        font-size: 1.4em;
    }
    .hero-section {
        padding: 8rem 0 6rem;
    }
    .hero-content h1 {
        font-size: 2.2em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9em;
    }
    .card {
        padding: 1.5rem;
    }
    .footer-content {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.4em;
    }
    .hero-content h1 {
        font-size: 1.8em;
    }
    .hero-content p {
        font-size: 0.9em;
    }
    .section {
        padding: 3rem 0;
    }
    .social-icons {
        gap: 1rem;
    }
}

/* Example Alpine.js related styles */
.fade-transition {
    transition: opacity 0.3s ease-out;
}
.fade-transition[x-transition:enter] {
    opacity: 0;
}
.fade-transition[x-transition:enter-start] {
    opacity: 0;
}
.fade-transition[x-transition:enter-end] {
    opacity: 1;
}
.fade-transition[x-transition:leave] {
    opacity: 1;
}
.fade-transition[x-transition:leave-start] {
    opacity: 1;
}
.fade-transition[x-transition:leave-end] {
    opacity: 0;
}

/* For elements that appear/disappear with Alpine.js */
.alpine-appear {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.alpine-appear.show {
    opacity: 1;
    transform: translateY(0);
}

/* Custom angular shape for decorative elements */
.shape-angular-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    clip-path: polygon(0 0, 100% 0, +49-55-1073843%);
    z-index: 0;
}

.shape-angular-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(225deg, var(--secondary-color) 0%, transparent 70%);
    opacity: 0.05;
    clip-path: polygon(100% 0, 100% 100%, +49-55-1073843%);
    z-index: 0;
}

/* Input focus state with subtle angular glow */
input:focus, textarea:focus {
    box-shadow: +49-55-1073843px rgba(var(--primary-color-rgb), 0.2), +49-55-1073843px rgba(var(--secondary-color-rgb), 0.1);
}

/* Set up RGB values for CSS variables for easier rgba() usage */
:root {
    --primary-color-rgb: 239, 68, 68;
    --secondary-color-rgb: 16, 185, 129;
}

/* Placeholder for potential other elements */
.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
}<ctrl63>


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}