/* Max Win Spin - Modern Gaming Platform Styles */

/* Reset and Base 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: #f8f9fa;
}

/* Container */
.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
 font-weight: 600;
 line-height: 1.2;
 margin-bottom: 1rem;
}

h1 {
 font-size: 2.5rem;
 color: #16a085;
}

h2 {
 font-size: 2rem;
 color: #27ae60;
}

h3 {
 font-size: 1.5rem;
 color: #16a085;
}

p {
 margin-bottom: 1rem;
 color: #555;
}

/* Links */
a {
 color: #27ae60;
 text-decoration: none;
 transition: color 0.3s ease;
}

a:hover {
 color: #16a085;
}

/* Breadcrumb Navigation */
.breadcrumb {
 background-color: #ecf0f1;
 padding: 10px 0;
 font-size: 0.9rem;
}

.breadcrumb ol {
 list-style: none;
 display: flex;
 align-items: center;
}

.breadcrumb li {
 margin-right: 10px;
}

.breadcrumb li:not(:last-child)::after {
 content: '>';
 margin-left: 10px;
 color: #7f8c8d;
}

/* Header */
header {
 background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
 color: white;
 padding: 1rem 0;
 box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
}

.logo img {
 height: 50px;
 width: auto;
}

.nav-menu {
 display: flex;
 list-style: none;
 gap: 2rem;
}

.nav-menu a {
 color: white;
 font-weight: 500;
 transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
 color: #f1c40f;
}

.nav-buttons {
 display: flex;
 gap: 1rem;
}

/* Buttons */
.btn {
 display: inline-block;
 padding: 12px 24px;
 border-radius: 6px;
 font-weight: 600;
 text-align: center;
 transition: all 0.3s ease;
 border: none;
 cursor: pointer;
 text-decoration: none;
}

.btn-primary {
 background: linear-gradient(135deg, #f1c40f, #f39c12);
 color: white;
}

.btn-primary:hover {
 background: linear-gradient(135deg, #f39c12, #e67e22);
 transform: translateY(-2px);
 box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
}

.btn-secondary {
 background: transparent;
 color: white;
 border: 2px solid white;
}

.btn-secondary:hover {
 background: white;
 color: #27ae60;
}

.btn-login {
 background: rgba(255,255,255,0.2);
 color: white;
 border: 1px solid rgba(255,255,255,0.3);
}

.btn-login:hover {
 background: rgba(255,255,255,0.3);
}

.btn-register {
 background: #f1c40f;
 color: white;
}

.btn-register:hover {
 background: #f39c12;
}

.btn-large {
 padding: 15px 30px;
 font-size: 1.1rem;
}

.btn-outline {
 background: transparent;
 color: #27ae60;
 border: 2px solid #27ae60;
}

.btn-outline:hover {
 background: #27ae60;
 color: white;
}

/* Hero Section */
.hero {
 background: linear-gradient(135deg, #27ae60 0%, #2ecc71 50%, #16a085 100%);
 color: white;
 padding: 6rem 0;
 position: relative;
 overflow: hidden;
}

.hero::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
 opacity: 0.3;
 z-index: 1;
}

.hero-container {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 4rem;
 align-items: center;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 2rem;
 position: relative;
 z-index: 2;
}

.hero-content {
 animation: slideInLeft 1s ease-out;
}

.hero-badge {
 display: inline-block;
 background: rgba(255, 255, 255, 0.15);
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255, 255, 255, 0.2);
 border-radius: 50px;
 padding: 0.5rem 1.5rem;
 margin-bottom: 2rem;
 animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-text {
 font-size: 0.9rem;
 font-weight: 600;
 color: #f1c40f;
}

.hero h1 {
 font-size: 4rem;
 margin-bottom: 1.5rem;
 line-height: 1.1;
 animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-title-main {
 display: block;
 color: white;
 font-weight: 800;
 text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title-accent {
 display: block;
 color: #f1c40f;
 font-weight: 800;
 text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
 margin-left: 1rem;
}

.hero-title-sub {
 display: block;
 font-size: 1.5rem;
 font-weight: 400;
 color: rgba(255, 255, 255, 0.9);
 margin-top: 0.5rem;
 text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-subtitle {
 font-size: 1.3rem;
 margin-bottom: 2.5rem;
 opacity: 0.95;
 line-height: 1.6;
 animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
 display: flex;
 gap: 2rem;
 margin-bottom: 3rem;
 animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
 text-align: center;
 background: rgba(255, 255, 255, 0.1);
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255, 255, 255, 0.2);
 border-radius: 15px;
 padding: 1.5rem 1rem;
 min-width: 120px;
 transition: transform 0.3s ease;
}

.stat-item:hover {
 transform: translateY(-5px);
 background: rgba(255, 255, 255, 0.15);
}

.stat-number {
 font-size: 2rem;
 font-weight: 800;
 color: #f1c40f;
 margin-bottom: 0.5rem;
 text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.stat-label {
 font-size: 0.9rem;
 opacity: 0.9;
 font-weight: 500;
}

.hero-buttons {
 display: flex;
 gap: 1.5rem;
 flex-wrap: wrap;
 animation: fadeInUp 0.8s ease-out 1s both;
}

.btn-hero {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 padding: 1rem 2rem;
 font-size: 1.1rem;
 font-weight: 600;
 border-radius: 50px;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
}

.btn-hero::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
 transition: left 0.5s ease;
}

.btn-hero:hover::before {
 left: 100%;
}

.btn-icon {
 font-size: 1.2rem;
}

.hero-visual {
 position: relative;
 animation: slideInRight 1s ease-out 0.5s both;
}

.hero-image-container {
 position: relative;
 text-align: center;
}

.hero-main-image {
 max-width: 100%;
 height: auto;
 border-radius: 20px;
 box-shadow: 0 20px 60px rgba(0,0,0,0.3);
 transition: transform 0.3s ease;
}

.hero-main-image:hover {
 transform: scale(1.02);
}


/* Animations */
@keyframes slideInLeft {
 from {
 opacity: 0;
 transform: translateX(-50px);
 }
 to {
 opacity: 1;
 transform: translateX(0);
 }
}

@keyframes slideInRight {
 from {
 opacity: 0;
 transform: translateX(50px);
 }
 to {
 opacity: 1;
 transform: translateX(0);
 }
}

@keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(30px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
}


/* Page Header */
.page-header {
 background: linear-gradient(135deg, #16a085, #27ae60);
 color: white;
 padding: 3rem 0;
 text-align: center;
}

.page-header h1 {
 color: white;
 margin-bottom: 0.5rem;
}

.page-subtitle {
 font-size: 1.2rem;
 opacity: 0.9;
 margin-bottom: 0.5rem;
}

.last-updated {
 font-size: 0.9rem;
 opacity: 0.7;
}

/* Sections */
section {
 padding: 4rem 0;
}

.brand-intro,
.advantages {
 background: white;
}

.features,
.registration-process,
.faq,
.cta {
 background: #f8f9fa;
}

/* Section Badge */
.section-badge {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 background: linear-gradient(135deg, #f1c40f, #f39c12);
 color: white;
 padding: 0.5rem 1.5rem;
 border-radius: 50px;
 font-size: 0.9rem;
 font-weight: 600;
 margin-bottom: 1.5rem;
 box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

.badge-icon {
 font-size: 1rem;
}

.badge-text {
 font-weight: 600;
}

/* Brand Introduction */
.brand-content {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 4rem;
 align-items: center;
}

.brand-text h2 {
 margin-bottom: 1.5rem;
}

.brand-lead {
 font-size: 1.2rem;
 font-weight: 500;
 color: #27ae60;
 margin-bottom: 1.5rem;
}

.brand-highlights {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 1.5rem;
 margin-top: 2rem;
}

.highlight-item {
 display: flex;
 align-items: flex-start;
 gap: 1rem;
 padding: 1.5rem;
 background: #f8f9fa;
 border-radius: 15px;
 border-left: 4px solid #27ae60;
 transition: transform 0.3s ease;
}

.highlight-item:hover {
 transform: translateY(-5px);
 box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.highlight-icon {
 font-size: 2rem;
 flex-shrink: 0;
}

.highlight-text h4 {
 color: #16a085;
 margin-bottom: 0.5rem;
 font-size: 1.1rem;
}

.highlight-text p {
 color: #666;
 font-size: 0.9rem;
 margin: 0;
}

.brand-visual {
 display: flex;
 justify-content: center;
}

.brand-card {
 background: white;
 border-radius: 20px;
 box-shadow: 0 20px 60px rgba(0,0,0,0.1);
 padding: 2rem;
 width: 100%;
 max-width: 400px;
 border: 1px solid #e9ecef;
}

.card-header {
 text-align: center;
 margin-bottom: 2rem;
 padding-bottom: 1rem;
 border-bottom: 2px solid #f1c40f;
}

.card-title {
 font-size: 1.3rem;
 font-weight: 700;
 color: #16a085;
 margin-bottom: 0.5rem;
}

.card-subtitle {
 color: #666;
 font-size: 0.9rem;
}

.achievement-list {
 display: flex;
 flex-direction: column;
 gap: 1rem;
}

.achievement-item {
 display: flex;
 align-items: center;
 gap: 1rem;
 padding: 1rem;
 background: #f8f9fa;
 border-radius: 10px;
 transition: transform 0.3s ease;
}

.achievement-item:hover {
 transform: translateX(5px);
 background: #e9ecef;
}

.achievement-avatar {
 width: 40px;
 height: 40px;
 background: linear-gradient(135deg, #27ae60, #2ecc71);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.2rem;
 color: white;
}

.achievement-details {
 flex: 1;
}

.achievement-name {
 font-weight: 600;
 color: #2c3e50;
 margin-bottom: 0.25rem;
}

.achievement-amount {
 font-size: 1.1rem;
 font-weight: 700;
 color: #f1c40f;
 margin-bottom: 0.25rem;
}

.achievement-time {
 font-size: 0.8rem;
 color: #666;
}

/* Features Grid */
.features-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem;
 margin-top: 2rem;
}

/* Features Showcase */
.features-header {
 text-align: center;
 margin-bottom: 4rem;
}

.features-subtitle {
 font-size: 1.1rem;
 color: #666;
 margin-top: 1rem;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
}

.features-showcase {
 display: grid;
 grid-template-columns: 1fr 2fr;
 gap: 3rem;
 align-items: start;
}

.feature-main {
 position: sticky;
 top: 2rem;
}

.feature-card.featured {
 background: linear-gradient(135deg, #27ae60, #2ecc71);
 color: white;
 padding: 3rem;
 border-radius: 20px;
 box-shadow: 0 20px 60px rgba(39, 174, 96, 0.3);
 position: relative;
 overflow: hidden;
}

.feature-card.featured::before {
 content: '';
 position: absolute;
 top: 0;
 right: 0;
 width: 100px;
 height: 100px;
 background: rgba(255, 255, 255, 0.1);
 border-radius: 50%;
 transform: translate(30px, -30px);
}

.feature-card.featured .feature-icon {
 font-size: 3rem;
 margin-bottom: 1.5rem;
 display: block;
}

.feature-card.featured h3 {
 color: white;
 font-size: 1.8rem;
 margin-bottom: 1rem;
}

.feature-card.featured p {
 color: rgba(255, 255, 255, 0.9);
 font-size: 1.1rem;
 line-height: 1.6;
 margin-bottom: 2rem;
}

.feature-stats {
 display: flex;
 gap: 2rem;
 margin-top: 2rem;
}

.stat {
 text-align: center;
}

.stat-value {
 display: block;
 font-size: 1.5rem;
 font-weight: 800;
 color: #f1c40f;
 margin-bottom: 0.25rem;
}

.stat-label {
 font-size: 0.9rem;
 color: rgba(255, 255, 255, 0.8);
}

.feature-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 1.5rem;
}

.feature-card {
 background: white;
 padding: 2rem;
 border-radius: 15px;
 box-shadow: 0 10px 30px rgba(0,0,0,0.1);
 text-align: center;
 transition: all 0.3s ease;
 border: 1px solid #e9ecef;
 position: relative;
 overflow: hidden;
}

.feature-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 4px;
 background: linear-gradient(135deg, #27ae60, #2ecc71);
 transform: scaleX(0);
 transition: transform 0.3s ease;
}

.feature-card:hover::before {
 transform: scaleX(1);
}

.feature-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
 font-size: 2.5rem;
 margin-bottom: 1.5rem;
 display: block;
}

.feature-card h3 {
 color: #16a085;
 font-size: 1.3rem;
 margin-bottom: 1rem;
}

.feature-card p {
 color: #666;
 line-height: 1.6;
 margin-bottom: 1.5rem;
}

.feature-tag {
 display: inline-block;
 background: linear-gradient(135deg, #f1c40f, #f39c12);
 color: white;
 padding: 0.3rem 1rem;
 border-radius: 20px;
 font-size: 0.8rem;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

/* Registration Process */
.process-header {
 text-align: center;
 margin-bottom: 4rem;
}

.process-subtitle {
 font-size: 1.1rem;
 color: #666;
 margin-top: 1rem;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
}

.process-timeline {
 position: relative;
 max-width: 800px;
 margin: 0 auto;
}

.timeline-line {
 position: absolute;
 left: 50%;
 top: 0;
 bottom: 0;
 width: 4px;
 background: linear-gradient(135deg, #27ae60, #2ecc71);
 transform: translateX(-50%);
 border-radius: 2px;
}

.step {
 display: flex;
 align-items: center;
 margin-bottom: 4rem;
 position: relative;
}

.step:nth-child(even) {
 flex-direction: row-reverse;
}

.step:nth-child(even) .step-content {
 text-align: right;
 margin-right: 2rem;
 margin-left: 0;
}

.step:nth-child(odd) .step-content {
 text-align: left;
 margin-left: 2rem;
 margin-right: 0;
}

.step-visual {
 position: relative;
 z-index: 2;
 flex-shrink: 0;
}

.step-number {
 width: 60px;
 height: 60px;
 background: linear-gradient(135deg, #f1c40f, #f39c12);
 color: white;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-weight: bold;
 font-size: 1.5rem;
 box-shadow: 0 10px 30px rgba(241, 196, 15, 0.4);
 position: relative;
}

.step-icon {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 font-size: 1.5rem;
 opacity: 0.8;
}

.step-content {
 flex: 1;
 background: white;
 padding: 2.5rem;
 border-radius: 20px;
 box-shadow: 0 15px 40px rgba(0,0,0,0.1);
 border: 1px solid #e9ecef;
 position: relative;
}

.step-content::before {
 content: '';
 position: absolute;
 top: 50%;
 width: 0;
 height: 0;
 border: 15px solid transparent;
}

.step:nth-child(odd) .step-content::before {
 right: -30px;
 border-left-color: white;
}

.step:nth-child(even) .step-content::before {
 left: -30px;
 border-right-color: white;
}

.step-content h3 {
 color: #16a085;
 font-size: 1.5rem;
 margin-bottom: 1rem;
}

.step-content p {
 color: #666;
 line-height: 1.6;
 margin-bottom: 1.5rem;
}

.step-features {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
 gap: 1rem;
 margin-top: 1.5rem;
}

.step-feature {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 font-size: 0.9rem;
 color: #27ae60;
}

.feature-check {
 color: #27ae60;
 font-weight: bold;
 font-size: 1rem;
}

.process-cta {
 text-align: center;
 margin-top: 3rem;
}

/* Process Steps */
.process-steps {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
 margin-top: 2rem;
}

/* Advantages */
.advantages-content {
 display: grid;
 grid-template-columns: 2fr 1fr;
 gap: 3rem;
 align-items: center;
}

.advantages-image img {
 width: 100%;
 height: auto;
 border-radius: 10px;
 box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* FAQ */
.faq-list {
 max-width: 800px;
 margin: 0 auto;
}

.faq-item {
 background: white;
 margin-bottom: 1rem;
 border-radius: 8px;
 box-shadow: 0 2px 10px rgba(0,0,0,0.1);
 overflow: hidden;
}

.faq-item h3 {
 background: #f8f9fa;
 padding: 1.5rem;
 margin: 0;
 cursor: pointer;
 transition: background-color 0.3s ease;
}

.faq-item h3:hover {
 background: #e9ecef;
}

.faq-item p {
 padding: 0 1.5rem 1.5rem;
 margin: 0;
}

/* CTA Section */
.cta {
 background: linear-gradient(135deg, #16a085, #27ae60);
 color: white;
 text-align: center;
}

.cta h2 {
 color: white;
 margin-bottom: 1rem;
}

.cta p {
 font-size: 1.1rem;
 margin-bottom: 2rem;
 opacity: 0.9;
}

.cta-buttons {
 display: flex;
 gap: 1rem;
 justify-content: center;
 flex-wrap: wrap;
}

/* About Page Styles */
.about-content {
 max-width: 800px;
 margin: 0 auto;
}

.about-intro,
.about-values,
.about-commitment {
 margin-bottom: 3rem;
}

.values-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
 margin-top: 2rem;
}

.value-item {
 background: white;
 padding: 2rem;
 border-radius: 10px;
 box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Privacy Policy & Terms Styles */
.privacy-content,
.terms-content,
.disclaimer-content {
 max-width: 900px;
 margin: 0 auto;
}

.privacy-section,
.terms-section,
.disclaimer-section {
 margin-bottom: 3rem;
 background: white;
 padding: 2rem;
 border-radius: 10px;
 box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.privacy-section h2,
.terms-section h2,
.disclaimer-section h2 {
 color: #16a085;
 border-bottom: 2px solid #27ae60;
 padding-bottom: 0.5rem;
 margin-bottom: 1.5rem;
}

.privacy-section h3,
.terms-section h3,
.disclaimer-section h3 {
 color: #27ae60;
 margin-top: 1.5rem;
 margin-bottom: 1rem;
}

.privacy-section ul,
.terms-section ul,
.disclaimer-section ul {
 margin-left: 2rem;
 margin-bottom: 1rem;
}

.privacy-section li,
.terms-section li,
.disclaimer-section li {
 margin-bottom: 0.5rem;
}

/* Support Page Styles */
.support-content {
 max-width: 1000px;
 margin: 0 auto;
}

.support-intro {
 text-align: center;
 margin-bottom: 3rem;
}

.contact-methods {
 margin-bottom: 3rem;
}

.contact-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
 margin-top: 2rem;
}

.contact-card {
 background: white;
 padding: 2rem;
 border-radius: 10px;
 box-shadow: 0 5px 15px rgba(0,0,0,0.1);
 text-align: center;
}

.contact-card h3 {
 color: #16a085;
 margin-bottom: 1rem;
}

.faq-section {
 margin-bottom: 3rem;
}

.support-hours {
 background: white;
 padding: 2rem;
 border-radius: 10px;
 box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hours-info p {
 margin-bottom: 0.5rem;
 font-weight: 500;
}

/* 404 Error Page */
.error-page {
 padding: 4rem 0;
 text-align: center;
}

.error-content {
 max-width: 600px;
 margin: 0 auto;
}

.error-image {
 margin-bottom: 2rem;
}

.error-image img {
 max-width: 100%;
 height: auto;
}

.error-text h1 {
 font-size: 3rem;
 color: #e74c3c;
 margin-bottom: 1rem;
}

.error-message {
 font-size: 1.2rem;
 color: #7f8c8d;
 margin-bottom: 1rem;
}

.error-suggestion {
 color: #95a5a6;
 margin-bottom: 2rem;
}

.error-actions {
 display: flex;
 gap: 1rem;
 justify-content: center;
 flex-wrap: wrap;
 margin-bottom: 3rem;
}

.helpful-links {
 margin-top: 3rem;
}

.links-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
 margin-top: 2rem;
}

.link-card {
 background: white;
 padding: 2rem;
 border-radius: 10px;
 box-shadow: 0 5px 15px rgba(0,0,0,0.1);
 text-align: center;
}

.search-suggestion {
 background: #f8f9fa;
 padding: 2rem;
 border-radius: 10px;
 margin-top: 2rem;
}

.search-suggestion ul {
 list-style: none;
 text-align: left;
 max-width: 500px;
 margin: 0 auto;
}

.search-suggestion li {
 padding: 0.5rem 0;
 border-bottom: 1px solid #dee2e6;
}

.search-suggestion li:last-child {
 border-bottom: none;
}

/* Footer */
footer {
 background: linear-gradient(135deg, #16a085, #27ae60);
 color: white;
 padding: 3rem 0 1rem;
}

.footer-content {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
 margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
 color: #f1c40f;
 margin-bottom: 1rem;
}

.footer-section ul {
 list-style: none;
}

.footer-section ul li {
 margin-bottom: 0.5rem;
}

.footer-section a {
 color: #bdc3c7;
 transition: color 0.3s ease;
}

.footer-section a:hover {
 color: #f1c40f;
}

.footer-bottom {
 border-top: 1px solid rgba(255,255,255,0.2);
 padding-top: 1rem;
 text-align: center;
 color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
 .nav-container {
 flex-direction: column;
 gap: 1rem;
 }
 
 .nav-menu {
 flex-direction: column;
 gap: 1rem;
 text-align: center;
 }
 
 .hero {
 padding: 4rem 0;
 }
 
 .hero-container {
 grid-template-columns: 1fr;
 gap: 3rem;
 text-align: center;
 }
 
 .hero h1 {
 font-size: 2.5rem;
 }
 
 .hero-title-main,
 .hero-title-accent {
 display: inline;
 margin-right: 0.5rem;
 }
 
 .hero-title-sub {
 font-size: 1.2rem;
 margin-top: 1rem;
 }
 
 .hero-stats {
 justify-content: center;
 flex-wrap: wrap;
 gap: 1rem;
 }
 
 .stat-item {
 min-width: 100px;
 padding: 1rem 0.5rem;
 }
 
 .hero-buttons {
 justify-content: center;
 flex-direction: column;
 align-items: center;
 }
 
 .btn-hero {
 width: 100%;
 max-width: 300px;
 justify-content: center;
 }
 
 
 .brand-content {
 grid-template-columns: 1fr;
 gap: 3rem;
 text-align: center;
 }
 
 .features-showcase {
 grid-template-columns: 1fr;
 gap: 2rem;
 }
 
 .feature-main {
 position: static;
 }
 
 .feature-grid {
 grid-template-columns: 1fr;
 }
 
 .process-timeline {
 max-width: 100%;
 }
 
 .timeline-line {
 display: none;
 }
 
 .step {
 flex-direction: column !important;
 text-align: center;
 margin-bottom: 3rem;
 }
 
 .step:nth-child(even) .step-content,
 .step:nth-child(odd) .step-content {
 text-align: center;
 margin: 1rem 0 0 0;
 }
 
 .step-content::before {
 display: none;
 }
 
 .step-features {
 grid-template-columns: 1fr;
 text-align: left;
 }
 
 .advantages-content {
 grid-template-columns: 1fr;
 }
 
 .cta-buttons {
 flex-direction: column;
 align-items: center;
 }
 
 .error-actions {
 flex-direction: column;
 align-items: center;
 }
}

@media (max-width: 480px) {
 .container {
 padding: 0 15px;
 }
 
 h1 {
 font-size: 2rem;
 }
 
 h2 {
 font-size: 1.5rem;
 }
 
 .btn {
 padding: 10px 20px;
 font-size: 0.9rem;
 }
 
 .hero {
 padding: 3rem 0;
 }
 
 .hero h1 {
 font-size: 2rem;
 }
 
 .hero-title-main,
 .hero-title-accent {
 display: block;
 margin-right: 0;
 }
 
 .hero-title-sub {
 font-size: 1rem;
 }
 
 .hero-stats {
 flex-direction: column;
 align-items: center;
 gap: 1rem;
 }
 
 .stat-item {
 width: 100%;
 max-width: 200px;
 }
 
 .hero-buttons {
 gap: 1rem;
 }
 
 .btn-hero {
 padding: 0.8rem 1.5rem;
 font-size: 1rem;
 }
 
 .feature-card,
 .step,
 .contact-card {
 padding: 1.5rem;
 }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
 * {
 animation-duration: 0.01ms !important;
 animation-iteration-count: 1 !important;
 transition-duration: 0.01ms !important;
 }
}

/* Focus styles for accessibility */
.btn:focus,
a:focus {
 outline: 2px solid #27ae60;
 outline-offset: 2px;
}

/* Print styles */
@media print {
 .nav-buttons,
 .hero-buttons,
 .cta-buttons,
 .error-actions {
 display: none;
 }
 
 .hero {
 background: none;
 color: black;
 }
 
 .cta {
 background: none;
 color: black;
 }
}
