/* CSS Variables */
:root {
    --primary-color: #1a7fa8;
    --primary-dark: #15657f;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #2d2d2d;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.header-top {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.header-info span {
    opacity: 0.9;
}

.header-social {
    display: flex;
    gap: 12px;
}

.header-social a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.header-social a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.header-nav {
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.logo:hover {
    color: var(--text-color);
}

.logo-icon {
    width: 45px;
    height: 52px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

.nav-phone {
    text-align: right;
}

.nav-phone span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.nav-phone a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.92) 0%, rgba(26, 37, 47, 0.95) 100%),
                url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 150px 0 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%231a7fa8" stroke-width="0.5" opacity="0.3"/></svg>') repeat;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-decoration {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
}

/* About Banner */
.about-banner {
    background-color: var(--primary-color);
    padding: 40px 0;
}

.about-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.about-banner p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.advantages h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--text-light);
}

.advantages h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.97) 0%, rgba(248, 249, 250, 0.95) 100%),
                url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.service-item {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.service-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-light);
}

.service-item ul {
    margin-top: 1rem;
    padding-left: 20px;
}

.service-item li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-subsection {
    margin-top: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
}

.service-subsection h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Logistics Section */
.logistics {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.93) 0%, rgba(44, 62, 80, 0.95) 100%),
                url('https://images.unsplash.com/photo-1586864387789-628af9feed72?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    color: var(--white);
}

.logistics h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.logistics .service-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-left-color: var(--white);
}

.logistics .service-item h3 {
    color: var(--white);
}

.logistics .service-item p,
.logistics .service-item li {
    color: rgba(255, 255, 255, 0.9);
}

.logistics .service-item li::before {
    color: var(--white);
}

/* Crypto Payment Section */
.crypto-payment {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7931a 0%, #f5a623 100%);
}

.crypto-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.crypto-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crypto-icon svg {
    width: 45px;
    height: 45px;
    fill: #f7931a;
}

.crypto-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.crypto-intro {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.crypto-content h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.crypto-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 2rem;
    text-align: left;
}

.crypto-step {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f7931a;
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 10px;
}

.crypto-step p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
}

.crypto-currencies {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.crypto-currencies h4 {
    color: #f7931a;
    margin-bottom: 0.5rem;
}

.crypto-currencies p {
    color: var(--text-color);
    margin: 0;
}

.crypto-payment .btn-primary {
    background-color: var(--white);
    color: #f7931a;
}

.crypto-payment .btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Crypto Badge */
.crypto-badge {
    display: inline-block;
    background-color: var(--white);
    color: #f7931a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Crypto Benefits Grid */
.crypto-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 2rem 0;
}

.crypto-benefit {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.crypto-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.crypto-benefit strong {
    display: block;
    color: #f7931a;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.crypto-benefit p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Turnkey Section */
.turnkey {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.turnkey h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.turnkey > .container > p {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--text-light);
}

.turnkey ul {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 20px;
}

.turnkey li {
    position: relative;
    padding: 10px 0 10px 30px;
    border-bottom: 1px solid var(--border-color);
}

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

/* How We Work Section */
.how-we-work {
    padding: 80px 0;
}

.how-we-work h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.step-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-item svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    fill: var(--primary-color);
}

.feature-item p {
    margin: 0;
    font-weight: 500;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(26, 37, 47, 0.92) 100%),
                url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    color: var(--white);
    text-align: center;
}

.mission h2 {
    margin-bottom: 1.5rem;
}

.mission p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 127, 168, 0.92) 0%, rgba(21, 101, 127, 0.94) 100%),
                url('https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container h2 {
    margin-bottom: 1rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 127, 168, 0.1);
}

.contact-info {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: var(--primary-color);
    margin-top: 2px;
}

.info-item p,
.info-item a {
    margin: 0;
    color: var(--text-color);
}

.info-item a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-tagline {
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    color: var(--white);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-social a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Page Hero for Internal Pages */
.page-hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(26, 37, 47, 0.92) 100%),
                url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 150px 0 80px;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin: 0;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-intro .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Page Specific */
.contact-page {
    padding: 80px 0;
}

.contact-page .form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
    cursor: pointer;
}

.contact-page .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 127, 168, 0.1);
}

.crypto-info-box {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff8e6;
    border-radius: 8px;
    border-left: 4px solid #f7931a;
}

.crypto-info-box h4 {
    color: #f7931a;
    margin-bottom: 10px;
    font-size: 1rem;
}

.crypto-info-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .crypto-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .header-top-content {
        justify-content: center;
        text-align: center;
    }

    .header-info {
        flex-direction: column;
        gap: 5px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-phone {
        display: none;
    }

    .hero {
        min-height: 500px;
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .about-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .crypto-steps {
        grid-template-columns: 1fr;
    }

    .crypto-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        min-width: 100%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .service-item {
        padding: 20px;
    }

    .contact-info {
        padding: 25px;
    }

    .crypto-benefits {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}
