/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-dark: #222222;
    --gray-medium: #444444;
    --gray-light: #666666;
    --gray-lighter: #888888;
    --gray-border: #cccccc;
    --gray-bg: #f5f5f5;
    --old-paper: #f8f4e8;
    --vintage-border: #8b7355;
    --transition: all 0.3s ease;
    --shadow-vintage: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 8px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Amiri', serif;
    line-height: 1.8;
    color: var(--gray-medium);
    background-color: var(--white);
    direction: rtl;
    overflow-x: hidden;
    font-weight: 400;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000000' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    color: var(--black);
}

/* Vintage Text Styles */
.vintage-text {
    font-family: 'Amiri', serif;
    color: var(--gray-medium);
    font-weight: 400;
}

.vintage-heading {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    color: var(--black);
    position: relative;
}

/* Classic Header */
.classic-header {
    background-color: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-vintage);
    border-bottom: 2px solid var(--black);
    padding: 15px 0;
    font-family: 'Cairo', sans-serif;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-name h1 {
    color: var(--black);
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tagline {
    color: var(--gray-light);
    font-size: 0.9rem;
    font-style: italic;
    font-family: 'Amiri', serif;
}

/* Classic Navigation */
.classic-nav ul {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--gray-medium);
    font-weight: 600;
    padding: 8px 15px;
    position: relative;
    font-size: 1.1rem;
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--black);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--black);
}

.nav-link:hover::before {
    width: 100%;
}

/* Hero Section with Vintage Style */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/img/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vintage-frame {
    background: rgba(255, 255, 255, 0.9);
    padding: 60px 40px;
    border: 8px double var(--black);
    position: relative;
    max-width: 800px;
    text-align: center;
}

.vintage-frame::before,
.vintage-frame::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--black);
}

.vintage-frame::before {
    top: -10px;
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.vintage-frame::after {
    bottom: -10px;
    left: -10px;
    border-right: none;
    border-top: none;
}

.vintage-title {
    color: var(--black);
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
    font-family: 'Cairo', sans-serif;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--gray-medium);
    font-family: 'Amiri', serif;
    font-style: italic;
}

.vintage-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.separator-line {
    width: 100px;
    height: 1px;
    background-color: var(--black);
}

.vintage-scroll {
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Vintage Buttons */
.classic-btn {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 15px 40px;
    border: 2px solid var(--black);
    border-radius: 0;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.classic-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: var(--white);
    transition: width 0.3s ease;
    z-index: 1;
}

.classic-btn:hover::before {
    width: 100%;
}

.classic-btn span {
    position: relative;
    z-index: 2;
}

.classic-btn:hover {
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.vintage-header {
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: 'Cairo', sans-serif;
}

.vintage-text {
    font-family: 'Amiri', serif;
}

.title-underline {
    width: 100px;
    height: 3px;
    background-color: var(--black);
    margin: 0 auto 20px;
}

.vintage-underline {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--black), transparent);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Amiri', serif;
}

.vintage-subtitle {
    font-style: italic;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
    align-items: center;
}

.vintage-image-frame {
    position: relative;
    padding: 20px;
    background: var(--white);
    border: 4px double var(--black);
}

.vintage-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--gray-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    border: 2px dashed var(--gray-border);
}

.vintage-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--gray-medium);
}

.vintage-caption {
    font-family: 'Amiri', serif;
    font-style: italic;
    color: var(--gray-light);
}

.frame-decoration {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--black);
}

.top-left {
    top: -5px;
    right: -5px;
    border-bottom: none;
    border-left: none;
}

.top-right {
    top: -5px;
    left: -5px;
    border-bottom: none;
    border-right: none;
}

.bottom-left {
    bottom: -5px;
    right: -5px;
    border-top: none;
    border-left: none;
}

.bottom-right {
    bottom: -5px;
    left: -5px;
    border-top: none;
    border-right: none;
}

.vintage-content-box {
    padding: 40px;
    background: var(--white);
    border: 2px solid var(--black);
    position: relative;
}

.vintage-border-left {
    position: absolute;
    right: 0;
    top: 20px;
    bottom: 20px;
    width: 4px;
    background-color: var(--black);
}

.vintage-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.vintage-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--gray-bg);
    border: 1px solid var(--gray-border);
    font-family: 'Amiri', serif;
}

.vintage-icon {
    color: var(--black);
}

.vintage-feature-text {
    color: var(--gray-medium);
}

/* Activities Section */
.activities-section {
    padding: 100px 0;
    position: relative;
}

.vintage-bg {
    background-color: var(--old-paper);
}

.activities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vintage-card {
    background-color: var(--white);
    padding: 40px;
    margin-bottom: 30px;
    border: 2px solid var(--black);
    box-shadow: var(--shadow-vintage);
    position: relative;
    transition: var(--transition);
}

.vintage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--gray-dark);
}

.vintage-number {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--black);
    color: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid var(--white);
}

.activity-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--black);
    font-family: 'Cairo', sans-serif;
}

.vintage-line {
    width: 60px;
    height: 2px;
    background-color: var(--black);
    margin: 15px 0 25px;
}

.activity-desc {
    color: var(--gray-medium);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Amiri', serif;
}

.vintage-image-small {
    width: 100px;
    height: 100px;
    background: var(--gray-bg);
    border: 2px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    float: left;
}

.vintage-image-small i {
    font-size: 2.5rem;
    color: var(--gray-medium);
}

/* Vintage Decoration */
.vintage-decoration {
    text-align: center;
    margin: 60px auto;
    max-width: 800px;
}

.vintage-border-top,
.vintage-border-bottom {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--black), transparent);
    margin: 20px 0;
}

.vintage-ornament {
    display: flex;
    justify-content: center;
    gap: 40px;
    color: var(--gray-medium);
    font-size: 2rem;
}

/* Add these styles to your existing CSS */

/* Vintage Image Styles */
.vintage-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.1);
    transition: var(--transition);
}

.vintage-image:hover {
    filter: grayscale(0%) contrast(1);
}

.vintage-image-frame {
    position: relative;
    padding: 20px;
    background: var(--white);
    border: 4px double var(--black);
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.vintage-image-frame:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.overlay-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.vintage-caption {
    font-family: 'Amiri', serif;
    font-style: italic;
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
}

/* Fallback if image doesn't load */
.vintage-image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-color: var(--gray-bg);
    border: 2px dashed var(--gray-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    z-index: -1;
}

.vintage-image-frame::before {
    content: '⬇︎ صورة الشركة ⬇︎';
    font-family: 'Amiri', serif;
    font-style: italic;
    font-size: 1.2rem;
}

.vintage-image-frame img.loaded + .image-overlay + ::before {
    display: none;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
}

.vintage-stats {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
                url('/img/stats-bg.jpg') center/cover no-repeat;
}

.vintage-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.vintage-stat {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0;
}

.vintage-stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.vintage-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    font-family: 'Cairo', sans-serif;
}

.vintage-stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Amiri', serif;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
}

.vintage-contact-info {
    background-color: var(--old-paper);
    padding: 40px;
    border: 2px solid var(--black);
}

.vintage-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-border);
}

.vintage-info-item:last-child {
    border-bottom: none;
}

.vintage-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--black);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.vintage-info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--black);
    font-family: 'Cairo', sans-serif;
}

.vintage-info-content p {
    color: var(--gray-medium);
    line-height: 1.6;
    font-family: 'Amiri', serif;
}

.vintage-notice {
    background-color: var(--white);
    padding: 20px;
    border: 2px solid var(--black);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.vintage-notice-icon {
    color: var(--black);
    font-size: 1.5rem;
}

.vintage-notice-text {
    color: var(--gray-medium);
    font-weight: 500;
    font-family: 'Amiri', serif;
}

/* Vintage Form */
.vintage-form-frame {
    padding: 20px;
    background: var(--white);
    border: 4px double var(--black);
}

.vintage-form-group {
    margin-bottom: 25px;
}

.vintage-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--black);
    font-family: 'Cairo', sans-serif;
}

.vintage-input,
.vintage-select,
.vintage-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--black);
    border-radius: 0;
    font-family: 'Amiri', serif;
    font-size: 1.1rem;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--gray-medium);
}

.vintage-input:focus,
.vintage-select:focus,
.vintage-textarea:focus {
    outline: none;
    border-color: var(--gray-dark);
    background-color: var(--gray-bg);
}

.vintage-submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Vintage Footer */
.vintage-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 4px double var(--white);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 20px;
    margin-bottom: 40px;
}

.vintage-footer-section {
    text-align: right;
}

.vintage-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.vintage-logo i {
    font-size: 2.5rem;
    color: var(--white);
}

.vintage-footer-heading {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Cairo', sans-serif;
}

.vintage-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--white);
}

.vintage-footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: 'Amiri', serif;
}

.vintage-seal {
    width: 80px;
    height: 80px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.seal-text {
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.vintage-footer-links {
    padding: 0;
}

.vintage-footer-link {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    padding: 8px 0;
    transition: var(--transition);
    font-family: 'Amiri', serif;
    position: relative;
    padding-right: 20px;
}

.vintage-footer-link:hover {
    color: var(--white);
    padding-right: 30px;
}

.vintage-footer-link::before {
    content: '›';
    position: absolute;
    right: 0;
    transition: var(--transition);
}

.vintage-footer-link:hover::before {
    right: -10px;
}

.vintage-footer-icon {
    margin-left: 10px;
}

.vintage-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.vintage-social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vintage-social-icon:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.vintage-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vintage-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-family: 'Amiri', serif;
}

/* Vintage Scroll to Top */
.vintage-scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--black);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 0;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 999;
}

.vintage-scroll-top:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

/* Reveal Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vintage-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .classic-nav {
        display: none;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .vintage-card {
        padding: 30px 20px;
    }
    
    .vintage-number {
        top: -15px;
        right: -15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .vintage-footer-heading::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .vintage-logo {
        justify-content: center;
    }
    
    .vintage-footer-section {
        text-align: center;
    }
    
    .vintage-social-icons {
        justify-content: center;
    }
    
    .vintage-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .vintage-title {
        font-size: 1.8rem;
    }
    
    .vintage-contact-info,
    .vintage-form-frame {
        padding: 25px;
    }
    
    .vintage-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .vintage-info-icon {
        margin: 0 auto;
    }
    
    .classic-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .vintage-frame {
        padding: 40px 20px;
    }
}