body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2D3748;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.z7m1-nav-container {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.z7m1-hero-asymmetric {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.z7m1-diagonal-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.z7m1-contact-form .form-control {
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.z7m1-contact-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn {
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    color: white;
}

.card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.shadow-lg {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.z7m1-item-container {
    position: relative;
    overflow: hidden;
}

.z7m1-item-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.6s ease;
}

.z7m1-item-container:hover::before {
    left: 100%;
}

.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.display-4, .display-5 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lead {
    font-size: 1.15rem;
    font-weight: 400;
}

.border-start.border-4 {
    border-width: 4px !important;
}

.z7m1-cookie-banner {
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.position-fixed {
    z-index: 1060;
}

.table th {
    font-weight: 600;
    border: none;
}

.table td {
    border: none;
    vertical-align: middle;
}

.table tbody tr:hover {
    background-color: rgba(102, 126, 234, 0.05);
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .z7m1-hero-asymmetric {
        padding-top: 100px;
        min-height: auto;
    }
    
    .z7m1-diagonal-bg {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 60%, 100% 30%, 100% 100%, 0% 100%);
    }
}

.img-fluid {
    transition: all 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.02);
}

.list-unstyled li {
    transition: all 0.3s ease;
}

.list-unstyled li:hover {
    transform: translateX(5px);
}

.bg-light {
    background-color: #f8fafc !important;
}

.text-muted {
    color: #64748b !important;
}

.border-primary {
    border-color: #667eea !important;
}

.border-success {
    border-color: #10b981 !important;
}

.border-warning {
    border-color: #f59e0b !important;
}

.text-primary {
    color: #667eea !important;
}

.text-success {
    color: #10b981 !important;
}

.text-warning {
    color: #f59e0b !important;
}

.bg-primary {
    background-color: #667eea !important;
}

.bg-success {
    background-color: #10b981 !important;
}

.bg-warning {
    background-color: #f59e0b !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 500 !important;
}