* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0e27;
    --secondary-color: #1a237e;
    --accent-color: #00e5ff;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666;
    --bg-light: #f8f9fa;
    --bg-section: #0d1117;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.navbar {
    background: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background: #00c4e0;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.cookie-actions a {
    color: var(--accent-color);
    text-decoration: underline;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #00c4e0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,229,255,0.3);
}

.cta-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #283593;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26,35,126,0.3);
}

.trust-bar {
    background: var(--bg-light);
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.trust-bar p {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.intro-split {
    display: flex;
    padding: 5rem 0;
}

.intro-left {
    flex: 1;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.intro-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.intro-right {
    flex: 1;
}

.intro-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-amplify {
    background: var(--bg-section);
    color: var(--text-light);
    padding: 5rem 0;
}

.problem-amplify h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.problem-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.problem-card p {
    line-height: 1.7;
    opacity: 0.9;
}

.insight-reveal {
    padding: 5rem 0;
    background: var(--bg-light);
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.insight-text {
    flex: 1.2;
}

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.insight-visual {
    flex: 1;
}

.insight-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-inline {
    padding: 4rem 0;
    background: var(--primary-color);
    color: var(--text-light);
}

.testimonial-inline blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    padding: 2rem;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--accent-color);
}

.services-showcase {
    padding: 6rem 0;
}

.services-showcase h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-lead {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.service-split-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.service-visual {
    flex: 1;
    min-width: 300px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.service-content {
    flex: 1;
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.btn-select {
    background: var(--secondary-color);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.urgency-section {
    background: #fff3cd;
    padding: 3rem 0;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.urgency-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #856404;
}

.urgency-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #856404;
    margin-bottom: 0.8rem;
}

.form-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-left-content {
    flex: 1;
}

.form-left-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-left-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
    padding: 0;
}

.form-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-gray);
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    padding: 1.2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #00c4e0;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.final-testimonial {
    padding: 4rem 0;
    background: var(--bg-section);
    color: var(--text-light);
}

.final-testimonial blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    padding: 2rem;
}

.final-testimonial cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--accent-color);
}

.cta-strip {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
}

.cta-strip h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,229,255,0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0,229,255,0.6);
}

.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.8;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: var(--text-light);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 5rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-detail {
    padding: 5rem 0;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-detail-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-detail-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.service-detail-right ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-right ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.service-detail-right ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #00c4e0;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.cta-section {
    background: var(--bg-light);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.about-story {
    padding: 5rem 0;
}

.story-block {
    margin-bottom: 4rem;
}

.story-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.2rem;
}

.values-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-card p {
    line-height: 1.7;
    color: var(--text-gray);
}

.team-approach {
    padding: 5rem 0;
}

.team-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.team-approach p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.contact-content {
    padding: 5rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
}

.contact-item p {
    line-height: 1.7;
    color: var(--text-gray);
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-note p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.map-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

.thanks-hero {
    padding: 6rem 0;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thanks-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.thanks-details {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--accent-color);
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
}

.step-content p {
    line-height: 1.7;
    color: var(--text-gray);
}

.thanks-service {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    display: none;
}

.thanks-service h2 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
}

.service-name {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.thanks-note {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.thanks-note p {
    font-size: 0.95rem;
    color: #856404;
    margin: 0;
}

.legal-page {
    padding: 5rem 0;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.updated {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-content p {
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-gray);
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-card,
    .service-detail-card,
    .insight-container,
    .form-container,
    .contact-grid {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        gap: 0;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta a {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
