:root {
    --ouranos-dark: #0a0e27;
    --ouranos-light: #1a1f3a;
    --sky-blue: #2d5a8c;
    --silver-accent: #c0c0dc;
    --star-blue: #4a7ba7;
    --text-white: #f5f5f7;
    --accent-gold: #d4af37;
    --border-radius: 8px;
}

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

html, body {
    background-color: var(--ouranos-dark);
    color: var(--text-white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

body {
    padding-top: 70px;
}

.navbar-custom {
    background-color: var(--ouranos-dark) !important;
    border-bottom: 1px solid var(--silver-accent);
    box-shadow: 0 2px 20px rgba(192, 192, 220, 0.1);
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--silver-accent) !important;
}

.nav-link {
    color: var(--text-white) !important;
    margin-left: 20px;
    transition: color 180ms ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--silver-accent) !important;
}

.btn-catalog {
    background-color: var(--silver-accent) !important;
    color: var(--ouranos-dark) !important;
    border: 1px solid var(--silver-accent);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 200ms ease;
}

.btn-catalog:hover {
    background-color: var(--sky-blue) !important;
    color: var(--text-white) !important;
    transform: scale(1.04);
}

.btn-primary-accent {
    background-color: var(--silver-accent) !important;
    color: var(--ouranos-dark) !important;
    border: none;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 200ms ease;
}

.btn-primary-accent:hover {
    background-color: var(--sky-blue) !important;
    color: var(--text-white) !important;
    transform: scale(1.04);
}

.btn-outline-accent {
    background-color: transparent !important;
    color: var(--silver-accent) !important;
    border: 2px solid var(--silver-accent) !important;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 200ms ease;
}

.btn-outline-accent:hover {
    background-color: var(--silver-accent) !important;
    color: var(--ouranos-dark) !important;
    transform: scale(1.04);
}

.btn-accent {
    background-color: var(--star-blue) !important;
    color: var(--text-white) !important;
    border: 1px solid var(--silver-accent);
    font-weight: 600;
    border-radius: 4px;
    transition: all 180ms ease;
}

.btn-accent:hover {
    background-color: var(--silver-accent) !important;
    color: var(--ouranos-dark) !important;
    transform: scale(1.04);
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(45, 90, 140, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-white);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.ouranos-heavenly-vault {
    background: linear-gradient(180deg, var(--ouranos-dark) 0%, var(--ouranos-light) 100%);
    padding: 80px 20px;
    border-top: 1px solid var(--silver-accent);
    border-bottom: 1px solid var(--silver-accent);
}

.ouranos-heavenly-vault h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--silver-accent);
    letter-spacing: 1px;
}

.vault-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.vault-item {
    background-color: rgba(192, 192, 220, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--silver-accent);
    transition: all 200ms ease;
}

.vault-item:hover {
    background-color: rgba(192, 192, 220, 0.15);
    transform: translateY(-5px);
}

.vault-item h3 {
    color: var(--silver-accent);
    margin-bottom: 10px;
    font-size: 16px;
}

.vault-item p {
    color: var(--text-white);
    font-size: 14px;
    line-height: 1.5;
}

.quick-tiles {
    padding: 80px 20px;
    background-color: var(--ouranos-dark);
}

.tile-card {
    background: linear-gradient(135deg, rgba(45, 90, 140, 0.15) 0%, rgba(74, 123, 167, 0.15) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--silver-accent);
    transition: all 200ms ease;
    height: 100%;
}

.tile-card:hover {
    background: linear-gradient(135deg, rgba(45, 90, 140, 0.25) 0%, rgba(74, 123, 167, 0.25) 100%);
    transform: scale(1.04);
    box-shadow: 0 10px 30px rgba(192, 192, 220, 0.2);
}

.tile-card h3 {
    color: var(--silver-accent);
    margin-bottom: 15px;
    font-size: 18px;
}

.tile-card p {
    color: var(--text-white);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.tile-card small {
    color: var(--star-blue);
    font-size: 12px;
}

.quick-notes {
    background-color: var(--ouranos-light);
    padding: 40px 20px;
    border-top: 1px solid var(--silver-accent);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.note-item {
    background-color: rgba(192, 192, 220, 0.1);
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-size: 12px;
    color: var(--silver-accent);
    border: 1px solid var(--silver-accent);
    transition: all 150ms ease;
}

.note-item:hover {
    background-color: rgba(192, 192, 220, 0.2);
    transform: scale(1.05);
}

.celestial-elevation-rites {
    padding: 80px 20px;
    background-color: var(--ouranos-dark);
}

.celestial-elevation-rites h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--silver-accent);
}

.rites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.rite-item {
    background-color: rgba(74, 123, 167, 0.2);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--star-blue);
    transition: all 180ms ease;
}

.rite-item:hover {
    background-color: rgba(192, 192, 220, 0.15);
    transform: scale(1.04);
}

.rite-item span {
    color: var(--silver-accent);
    font-size: 14px;
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.product-card {
    background-color: var(--ouranos-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 200ms ease;
    border: 1px solid var(--silver-accent);
}

.product-card:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 40px rgba(192, 192, 220, 0.25);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.08);
}

.starfield-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(192, 192, 220, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(74, 123, 167, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--silver-accent);
    color: var(--ouranos-dark);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    z-index: 5;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: var(--silver-accent);
    margin-bottom: 8px;
    font-size: 16px;
}

.product-meta {
    color: var(--star-blue);
    font-size: 12px;
    margin-bottom: 8px;
}

.product-desc {
    color: var(--text-white);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.product-availability {
    color: var(--silver-accent);
    font-size: 12px;
    margin-bottom: 12px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--silver-accent);
}

.product-price {
    color: var(--silver-accent);
    font-size: 18px;
    font-weight: bold;
}

.ouranos-core-infinity {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--ouranos-dark) 0%, var(--ouranos-light) 100%);
}

.ouranos-core-infinity h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--silver-accent);
}

.eternal-ouranos-skies, .astral-harmony-stars {
    padding: 80px 20px;
    background-color: var(--ouranos-light);
}

.eternal-ouranos-skies h2, .astral-harmony-stars h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--silver-accent);
}

.skies-list, .stars-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.skies-list li, .stars-list li {
    background-color: rgba(45, 90, 140, 0.15);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--silver-accent);
    color: var(--text-white);
    font-size: 14px;
    line-height: 1.5;
    transition: all 150ms ease;
}

.skies-list li:hover, .stars-list li:hover {
    background-color: rgba(192, 192, 220, 0.15);
    transform: translateX(5px);
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--ouranos-dark);
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--silver-accent);
}

.faq-item {
    background-color: var(--ouranos-light);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid var(--silver-accent);
    transition: all 200ms ease;
}

.faq-item:hover {
    background-color: rgba(45, 90, 140, 0.2);
    border-color: var(--sky-blue);
}

.faq-item h3 {
    color: var(--silver-accent);
    margin-bottom: 15px;
    font-size: 16px;
}

.faq-item p {
    color: var(--text-white);
    font-size: 14px;
    line-height: 1.6;
}

.transcendent-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--ouranos-dark) 0%, var(--sky-blue) 100%);
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    color: var(--silver-accent);
    margin-bottom: 20px;
    font-size: 32px;
}

.cta-box p {
    color: var(--text-white);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.footer {
    background-color: var(--ouranos-dark);
    border-top: 1px solid var(--silver-accent);
    padding: 60px 20px 30px;
    color: var(--text-white);
    font-size: 14px;
}

.footer h3 {
    color: var(--silver-accent);
    margin-bottom: 20px;
}

.footer p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--sky-blue);
    text-decoration: none;
    transition: color 150ms ease;
}

.footer-links a:hover {
    color: var(--silver-accent);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--silver-accent);
    color: var(--star-blue);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--ouranos-dark);
    border-top: 2px solid var(--silver-accent);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: var(--text-white);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.products-header {
    background: linear-gradient(135deg, var(--ouranos-dark) 0%, var(--sky-blue) 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid var(--silver-accent);
}

.products-header h1 {
    color: var(--silver-accent);
    font-size: 40px;
    margin-bottom: 15px;
}

.products-header p {
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.product-filters {
    padding: 40px 20px;
    background-color: var(--ouranos-light);
    border-bottom: 1px solid var(--silver-accent);
}

.filter-switcher {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    color: var(--sky-blue);
    border: 2px solid var(--sky-blue);
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 150ms ease;
    font-weight: 600;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--silver-accent);
    color: var(--ouranos-dark);
    border-color: var(--silver-accent);
}

.products-grid-section {
    padding: 80px 20px;
    background-color: var(--ouranos-dark);
}

.astral-balance-section {
    padding: 60px 20px;
    background-color: var(--ouranos-light);
}

.astral-balance-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--silver-accent);
}

.balance-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.balance-list li {
    background-color: rgba(45, 90, 140, 0.15);
    padding: 15px;
    border-radius: 4px;
    color: var(--text-white);
    font-size: 13px;
    border: 1px solid var(--star-blue);
    text-align: center;
    transition: all 150ms ease;
}

.balance-list li:hover {
    background-color: rgba(192, 192, 220, 0.15);
    transform: scale(1.05);
}

.eternal-guidance-section {
    padding: 60px 20px;
    background-color: var(--ouranos-dark);
}

.eternal-guidance-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--silver-accent);
}

.guidance-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.guidance-list li {
    background-color: rgba(45, 90, 140, 0.15);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--silver-accent);
    color: var(--text-white);
    font-size: 13px;
    line-height: 1.5;
    transition: all 150ms ease;
}

.guidance-list li:hover {
    background-color: rgba(192, 192, 220, 0.15);
    transform: translateX(5px);
}

.product-page-header {
    padding: 30px 20px;
    background-color: var(--ouranos-light);
    border-bottom: 1px solid var(--silver-accent);
}

.back-link {
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 150ms ease;
}

.back-link:hover {
    color: var(--silver-accent);
}

.product-detail {
    padding: 60px 20px;
    background-color: var(--ouranos-dark);
}

.product-detail h1 {
    color: var(--silver-accent);
    font-size: 32px;
    margin-bottom: 15px;
}

.product-price-detail {
    color: var(--silver-accent);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.product-image-detail {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--silver-accent);
}

.product-image-detail img {
    width: 100%;
    height: auto;
    display: block;
}

.product-description h3, .product-specs h3 {
    color: var(--silver-accent);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
}

.product-description p {
    color: var(--text-white);
    line-height: 1.7;
    font-size: 14px;
}

.product-specs ul {
    list-style: none;
    padding: 0;
}

.product-specs li {
    color: var(--text-white);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}

.product-specs li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--silver-accent);
}

.product-availability-detail {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--ouranos-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--star-blue);
}

.contact-header {
    background: linear-gradient(135deg, var(--ouranos-dark) 0%, var(--sky-blue) 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid var(--silver-accent);
}

.contact-header h1 {
    color: var(--silver-accent);
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-header p {
    color: var(--text-white);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

.contact-section {
    padding: 60px 20px;
    background-color: var(--ouranos-dark);
}

.contact-form {
    background-color: var(--ouranos-light);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--silver-accent);
}

.contact-form .form-group label {
    color: var(--silver-accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form .form-control {
    background-color: rgba(45, 90, 140, 0.1);
    border: 1px solid var(--sky-blue);
    color: var(--text-white);
    border-radius: 4px;
}

.contact-form .form-control:focus {
    background-color: rgba(45, 90, 140, 0.15);
    border-color: var(--silver-accent);
    box-shadow: 0 0 10px rgba(192, 192, 220, 0.2);
    color: var(--text-white);
}

.contact-form .custom-control-label {
    color: var(--text-white);
    margin-top: 2px;
}

.contact-form .custom-control-label a {
    color: var(--sky-blue);
    text-decoration: none;
}

.contact-form .custom-control-label a:hover {
    color: var(--silver-accent);
}

.contact-info {
    background-color: var(--ouranos-light);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--silver-accent);
    height: 100%;
}

.contact-info h3 {
    color: var(--silver-accent);
    margin-bottom: 25px;
    font-size: 18px;
}

.contact-info p {
    color: var(--text-white);
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info a {
    color: var(--sky-blue);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--silver-accent);
}

.thank-you-section {
    padding: 200px 20px;
    text-align: center;
    background-color: var(--ouranos-dark);
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-box h1 {
    color: var(--silver-accent);
    font-size: 48px;
    margin-bottom: 20px;
}

.thank-you-box p {
    color: var(--text-white);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-header {
    background: linear-gradient(135deg, var(--ouranos-dark) 0%, var(--sky-blue) 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid var(--silver-accent);
}

.about-header h1 {
    color: var(--silver-accent);
    font-size: 40px;
}

.about-section {
    padding: 80px 20px;
    background-color: var(--ouranos-dark);
}

.about-block {
    margin-bottom: 60px;
    background-color: var(--ouranos-light);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--silver-accent);
}

.about-block h2 {
    color: var(--silver-accent);
    font-size: 24px;
    margin-bottom: 20px;
}

.about-block p {
    color: var(--text-white);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 15px;
}

.about-block ul {
    list-style: none;
    padding: 0;
}

.about-block li {
    color: var(--text-white);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}

.about-block li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--silver-accent);
}

.legal-section {
    padding: 60px 20px;
    background-color: var(--ouranos-dark);
}

.legal-section h1 {
    color: var(--silver-accent);
    font-size: 36px;
    margin-bottom: 10px;
}

.legal-section > p {
    color: var(--star-blue);
    margin-bottom: 40px;
}

.legal-section h2 {
    color: var(--silver-accent);
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-section p {
    color: var(--text-white);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 15px;
}

.legal-section ul {
    color: var(--text-white);
    margin-left: 20px;
    font-size: 14px;
    line-height: 1.7;
}

.legal-section li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    html, body {
        font-size: 14px;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .hero-section {
        height: 400px;
        margin-top: 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .products-grid, .vault-grid, .rites-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary-accent, .btn-outline-accent, .btn-catalog {
        width: 100%;
    }

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

    .contact-header h1, .about-header h1 {
        font-size: 28px;
    }

    .product-detail {
        padding: 30px 20px;
    }

    .product-detail h1 {
        font-size: 24px;
    }

    .thank-you-box h1 {
        font-size: 32px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .footer {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .products-header h1, .contact-header h1, .about-header h1 {
        font-size: 24px;
    }

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

    .tile-card, .vault-item, .faq-item, .product-card {
        padding: 15px;
    }

    .btn {
        font-size: 12px;
        padding: 8px 12px;
    }

    .contact-form {
        padding: 20px;
    }

    .about-block, .contact-info {
        padding: 20px;
    }
}
