/* ============================================
   CoreByte Development - Global Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Responsive Typography
   ============================================ */

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1rem;
    }
}

/* ============================================
   Cookie Banner
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-in-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner.hide {
    animation: slideDown 0.4s ease-in-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cookie-banner-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-banner-text a {
    color: #4da6ff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: #99d4ff;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

#acceptAllCookies {
    background-color: #0066cc;
    color: #fff;
}

#acceptAllCookies:hover {
    background-color: #0052a3;
}

#rejectCookies {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

#rejectCookies:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background-color: transparent !important;
    border: 1px solid currentColor !important;
    color: #fff !important;
}

.btn-outline:hover {
    background-color: rgba(0, 102, 204, 0.2) !important;
}

/* ============================================
   Header & Navigation
   ============================================ */

.header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    letter-spacing: -1px;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0066cc;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0066cc;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: white;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 1rem 20px;
        border-bottom: 1px solid #eee;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    background: linear-gradient(135deg, #0066cc 0%, #004fa3 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #fff;
    color: #0066cc;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: #0066cc;
    color: white;
}

.btn-secondary:hover {
    background-color: #004fa3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,102,204,0.3);
}

/* ============================================
   Services Section
   ============================================ */

.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services h2,
.why-us h2,
.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-card:last-child {
    grid-column: 2;
    transform: scale(1.05);
}

.service-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service-card:last-child:hover {
    transform: translateY(-5px) scale(1.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card:last-child {
        grid-column: 1 / -1;
        transform: scale(1.02);
    }
    
    .service-card:last-child:hover {
        transform: translateY(-5px) scale(1.05);
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1rem;
    }
    
    .service-card:last-child {
        grid-column: 1;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
}

/* ============================================
   Why Us Section
   ============================================ */

.why-us {
    padding: 80px 0;
    background-color: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason {
    padding: 2rem;
    border-left: 4px solid #0066cc;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.reason h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.reason p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reason {
        padding: 1.5rem;
    }
    
    .reason h3 {
        font-size: 1rem;
    }
    
    .reason p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .reasons-grid {
        gap: 1rem;
    }
    
    .reason {
        padding: 1rem;
    }
    
    .reason h3 {
        font-size: 0.95rem;
    }
    
    .reason p {
        font-size: 0.85rem;
    }
}

.reason p {
    color: #666;
    line-height: 1.8;
}

/* ============================================
   CTA Section
   ============================================ */

.cta {
    background: linear-gradient(135deg, #0066cc 0%, #004fa3 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #004fa3 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ============================================
   Services Detail Page
   ============================================ */

.services-detail {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f9ff 0%, #fff 100%);
}

.service-detail-item {
    margin-bottom: 5rem;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #0066cc;
}

.service-detail-item:hover {
    box-shadow: 0 8px 35px rgba(0, 102, 204, 0.15);
    transform: translateY(-5px);
}

.service-detail-item h2 {
    font-size: 1.8rem;
    color: #0066cc;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-detail-item h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #4da6ff);
    border-radius: 2px;
}

.service-detail-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-detail-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-detail-item h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #0066cc;
    border-radius: 50%;
    display: inline-block;
}

.service-detail-item ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-item li {
    padding-left: 30px;
    margin-bottom: 1rem;
    position: relative;
    color: #666;
    line-height: 1.7;
}

.service-detail-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 1.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.benefit {
    background: linear-gradient(135deg, #f5f9ff 0%, #fff 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e0e8ff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #004a99 100%);
}

.benefit h3 {
    color: #0066cc;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .benefit {
        padding: 1.5rem;
    }
    
    .benefit h3 {
        font-size: 1rem;
        margin-top: 0.8rem;
    }
    
    .benefit p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .benefit {
        padding: 1rem;
    }
    
    .benefit h3 {
        font-size: 0.95rem;
        margin-top: 0.7rem;
    }
    
    .benefit p {
        font-size: 0.85rem;
    }
}

.benefit:hover {
    border-color: #0066cc;
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.12);
    transform: translateY(-3px);
}

.benefit h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: #0066cc;
    font-weight: 600;
}

.benefit p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   About Page
   ============================================ */

.about-section {
    padding: 60px 0;
}

.about-content {
    margin-bottom: 3rem;
    line-height: 1.8;
}

.about-content h2 {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.values {
    margin-bottom: 3rem;
}

.values h2 {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.value h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value p {
    color: #666;
    line-height: 1.8;
}

.vision {
    background-color: #f0f5ff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.vision h2 {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.vision-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f9ff 0%, #fff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-info {
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.3);
    display: none;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: #fff;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.contact-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.contact-item a:hover {
    border-bottom-color: #fff;
}

/* ============================================
   Contact Form
   ============================================ */

.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.08);
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    color: #0066cc;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #4da6ff);
    border-radius: 2px;
}

.contact-form {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

/* Piros csillag styling */
.required {
    color: #d32f2f;
    font-weight: 700;
    margin-left: 2px;
}

/* Form sorok - vizszintes elrendezés */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e0e8ff;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fafbfd;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 2rem;
    padding: 1.2rem;
    background-color: #f5f9ff;
    border-radius: 8px;
    border-left: 3px solid #0066cc;
}

.form-group.checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: #0066cc;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
    color: #333;
    line-height: 1.6;
}

.form-group.checkbox label a {
    color: #0066cc;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-group.checkbox label a:hover {
    color: #004a99;
}

.error-message {
    display: block;
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 1.2rem;
    font-weight: 500;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #d32f2f;
    background-color: #fff5f5;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    min-height: 1.5rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #4caf50;
}

.form-message.error {
    background-color: #ffebee;
    color: #d32f2f;
    border: 2px solid #f44336;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    margin-top: 0;
}

.contact-form button.full-width {
    width: 100%;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.contact-form button:active {
    transform: translateY(0);
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-form button:active {
    transform: translateY(0);
}

/* ============================================
   Privacy Information Section
   ============================================ */

.privacy-info {
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0ff 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.privacy-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.privacy-wrapper {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.privacy-info h2 {
    font-size: 1.8rem;
    color: #0066cc;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.privacy-info p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .privacy-wrapper {
        padding: 1.5rem;
    }

    .privacy-info h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   Footer
   ============================================ */

footer {
    background-color: #222;
    color: #aaa;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-content p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #0066cc;
}

@media (max-width: 768px) {
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-content p {
        width: 100%;
    }
    
    .footer-nav ul {
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-nav a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 20px 0 10px;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-content p {
        font-size: 0.8rem;
    }
    
    .footer-nav a {
        font-size: 0.8rem;
    }
}

.footer-content p {
    margin: 0;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #0066cc;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-banner-buttons button {
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid #eee;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
    }

    .nav-links a.active::after {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero {
        padding: 60px 0;
    }

    .services h2,
    .why-us h2,
    .cta h2 {
        font-size: 2rem;
    }

    .services,
    .why-us {
        padding: 40px 0;
    }

    .cta {
        padding: 40px 0;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .service-detail-item {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .service-detail-item h2 {
        font-size: 1.5rem;
    }

    .about-content h2,
    .values h2,
    .vision h2 {
        font-size: 1.5rem;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 1.5rem;
    }

    .legal-article h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .services h2,
    .why-us h2 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Legal Pages (Privacy Policy, Impressum, Cookies)
   ============================================ */

.legal-content {
    padding: 60px 0;
    background-color: #f9f9f9;
    min-height: 60vh;
}

.legal-article {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0066cc;
}

.legal-article h2 {
    color: #0066cc;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.legal-article h3 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.legal-article p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.legal-article ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-article li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.legal-article a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-article a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.info-box {
    background-color: #f0f7ff;
    padding: 25px;
    border-radius: 6px;
    margin-top: 15px;
    border-left: 3px solid #0066cc;
}

.info-box p {
    margin-bottom: 15px;
}

.info-box strong {
    color: #0066cc;
}

/* Checkbox styling for privacy acceptance */

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-group.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: #0066cc;
}

.form-group.checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.form-group.checkbox label a {
    color: #0066cc;
    text-decoration: underline;
}

/* ============================================
   Modern Animations & Effects
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   Services Overview Section (New)
   ============================================ */

.services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f9ff 0%, #fff 100%);
}

.section-title {
    font-size: 2.5rem;
    color: #0066cc;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid #0066cc;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #0066cc;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding-left: 25px;
    margin-bottom: 0.8rem;
    color: #555;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 1.1rem;
}

/* ============================================
   Benefits Section (New)
   ============================================ */

.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    background: linear-gradient(135deg, #f5f9ff 0%, #fff 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e0e8ff;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-item:hover {
    border-color: #0066cc;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.12);
    transform: translateY(-5px);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    opacity: 0.2;
    margin-bottom: 0.5rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #0066cc;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.benefit-item p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   Process Section (New)
   ============================================ */

.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f9ff 0%, #e8f0ff 100%);
}

.process-timeline {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.process-step {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.08);
    flex: 0 1 200px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #f0f0f0;
}

.process-step:last-child {
    flex: 0 1 220px;
    min-height: 320px;
    padding: 3rem 2rem;
}

.process-step:hover {
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    transform: translateY(-5px);
    border-color: #0066cc;
}

.step-number {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
    flex-shrink: 0;
}

.process-step h3 {
    color: #0066cc;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.process-arrow {
    font-size: 1.8rem;
    color: #0066cc;
    font-weight: bold;
    text-align: center;
    opacity: 0.6;
    flex: 0 1 auto;
    margin: 0 -0.5rem;
    align-self: center;
}

.process-timeline > :nth-child(8) {
    flex-basis: 100%;
    font-size: 2.5rem;
    margin: 1rem 0;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-step {
        flex: 0 1 100%;
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .process-step:last-child {
        flex: 0 1 100%;
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .process-step h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .process-step p {
        font-size: 0.85rem;
    }
    
    .process-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .process-timeline {
        gap: 1rem;
    }
    
    .process-step {
        flex: 0 1 100%;
        padding: 1.5rem 1rem;
        min-height: 240px;
    }
    
    .process-step:last-child {
        min-height: 240px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .process-step h3 {
        font-size: 0.95rem;
    }
    
    .process-step p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .process-arrow {
        display: none;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ============================================
   Technology Stack Section (New)
   ============================================ */

.tech-section {
    padding: 80px 0;
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.tech-item {
    background: linear-gradient(135deg, #f5f9ff 0%, #fff 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.08);
    transition: all 0.3s ease;
}

.tech-item:hover {
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    transform: translateY(-5px);
}

.tech-item h3 {
    color: #0066cc;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.tech-item ul {
    list-style: none;
    padding: 0;
}

.tech-item li {
    padding: 0.7rem 0;
    padding-left: 25px;
    color: #555;
    position: relative;
    font-size: 0.95rem;
}

.tech-item li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

/* ============================================
   CTA Section (Enhanced for Services)
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background-color: white;
    color: #0066cc;
}

.cta-buttons .btn-primary:hover {
    background-color: #f0f5ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.service-detail-item {
    animation: fadeInUp 0.6s ease-out;
}

.benefit {
    animation: scaleIn 0.4s ease-out;
}

.contact-info {
    animation: fadeInDown 0.5s ease-out;
}

.contact-form-wrapper {
    animation: fadeInUp 0.5s ease-out 0.1s both;
}

/* Smooth transitions for interactive elements */

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Form input transitions */

.form-group input,
.form-group textarea,
.form-group select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #4da6ff;
    background-color: #fff;
}

/* Text selection styling */

::selection {
    background-color: #0066cc;
    color: #fff;
}

::-moz-selection {
    background-color: #0066cc;
    color: #fff;
}

/* ============================================
   Maintenance & Support Section
   ============================================ */

.maintenance-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f9ff 0%, #fff 100%);
}

.maintenance-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0066cc;
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.maintenance-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.maintenance-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.maintenance-icon {
    font-size: 3rem;
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
}

.maintenance-title {
    flex: 1;
}

.maintenance-title h2 {
    color: #0066cc;
    font-size: 1.8rem;
    margin: 0 0 10px 0;
}

.maintenance-title p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.maintenance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.maintenance-content .feature-list {
    margin: 0;
    padding: 0;
}

.maintenance-result {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .maintenance-section {
        padding: 60px 0;
    }

    .maintenance-card {
        padding: 30px;
    }

    .maintenance-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
    }

    .maintenance-icon {
        font-size: 2.5rem;
        min-width: auto;
        text-align: left;
    }

    .maintenance-title h2 {
        font-size: 1.5rem;
    }

    .maintenance-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .maintenance-card {
        padding: 20px;
    }

    .maintenance-title h2 {
        font-size: 1.3rem;
    }

    .maintenance-title p {
        font-size: 0.9rem;
    }

    .maintenance-content .feature-list li {
        font-size: 0.9rem;
    }
}

/* ============================================
   Packages Page Styles
   ============================================ */

.packages {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.package-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-left: 4px solid #0066cc;
}

.package-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.package-card.featured {
    border-left-color: #ffc107;
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
    position: relative;
    transform: scale(1.02);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #ffc107;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.package-icon {
    font-size: 2rem;
}

.package-header h2 {
    color: #0066cc;
    font-size: 1.5rem;
    margin: 0;
}

.package-who {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.package-who h3,
.package-content h3,
.package-result h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.package-who p {
    color: #666;
    line-height: 1.6;
}

.package-content {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 8px 0;
    color: #555;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.package-result p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* Business Tips Section */

.business-tips {
    padding: 80px 0;
    background-color: #fff;
}

.business-tips h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.tips-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tips-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.tips-content blockquote {
    background-color: #f0f7ff;
    border-left: 4px solid #0066cc;
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #333;
    border-radius: 8px;
}

/* CTA Section */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-primary {
    background-color: #ffc107;
    color: #333;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #ffb300;
    transform: scale(1.05);
}

/* Responsive Design for Packages */

@media (max-width: 768px) {
    .packages {
        padding: 60px 0;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-5px);
    }

    .package-header h2 {
        font-size: 1.3rem;
    }

    .business-tips h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 12px 40px;
        font-size: 1rem;
    }
}
