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

:root {
    --primary-color: #000;
    --accent-r: #ff0000;
    --accent-g: #00ff00;
    --accent-b: #0000ff;
    --text-color: #333;
    --bg-color: #ffffff;
    --section-padding: 80px 0;
}

html {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans", "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, "Meiryo", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", "MS PGothic", sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

h2 {
    font-family: Garamond, "Noto Sans", sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

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

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

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-r), var(--accent-g), var(--accent-b));
}

.lang-toggle-container {
    margin-left: 1rem;
}

.lang-toggle {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    font-size: 0.9rem;
}

.lang-toggle:hover {
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    color: white;
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, var(--accent-r) 0%, transparent 33%),
        linear-gradient(90deg, transparent 33%, var(--accent-g) 33%, transparent 66%),
        linear-gradient(90deg, transparent 66%, var(--accent-b) 66%);
    opacity: 0.1;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    font-family: Garamond, "Adobe Garamond Pro", "EB Garamond", serif;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-press-kit {
    margin-top: 1.5rem;
    background: white !important;
    color: black !important;
}

/* Introduction & Product Image Section */
.intro-product-section {
    padding: var(--section-padding);
    background-color: var(--bg-color);
}

/* Video Section */
.video-section {
    padding: var(--section-padding);
    background-color: var(--bg-color);
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.video-section .container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
}

.video-player {
    width: 100% !important;
    max-width: 1200px !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    -webkit-aspect-ratio: 16 / 9;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    -webkit-object-fit: contain;
    background-color: #000;
    background-image: url('../media/thumb.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

/* iOS Safari用のvideo要素の直接スタイル */
video.video-player,
#hls-video.video-player {
    width: 100% !important;
    max-width: 1200px !important;
    height: auto !important;
    min-width: 0;
    min-height: 0;
}

/* iOS Safari用の追加対応 - aspect-ratioがサポートされない場合 */
@supports not (aspect-ratio: 16 / 9) {
    .video-section .container {
        position: relative;
        width: 100%;
        max-width: 100%;
    }
    
    .video-player {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 = 56.25% */
        height: 0;
        width: 100% !important;
    }
    
    .video-player video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }
}

/* iOS Safari専用のメディアクエリ */
@supports (-webkit-touch-callout: none) {
    .video-section {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .video-section .container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .video-player,
    #hls-video {
        width: 100% !important;
        max-width: 1200px !important;
        height: auto !important;
        box-sizing: border-box;
    }
}

.intro-product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-content {
    text-align: left;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 2;
}

.intro-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.product-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Highlights Section */
.highlights {
    padding: var(--section-padding);
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

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

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.highlight-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-download {
    margin-top: 1rem;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-family: Garamond, "Adobe Garamond Pro", "EB Garamond", serif;
    font-weight: 400;
    margin-bottom: 1rem;
}

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

/* Problem Section */
.problem-section {
    padding: var(--section-padding);
    background-color: var(--bg-color);
}

.problem-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.problem-section p {
    font-size: 1.1rem;
    line-height: 2;
}

/* Solution Section */
.solution-section {
    padding: var(--section-padding);
    background-color: #f8f9fa;
}

.solution-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.solution-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tech-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
    border-image: linear-gradient(180deg, var(--accent-r), var(--accent-g), var(--accent-b)) 1;
}

.tech-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.tech-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.tech-card li {
    margin: 0.5rem 0;
}

/* Comparison Images Section */
.comparison-section {
    padding: var(--section-padding);
    background-color: var(--bg-color);
}

.comparison-grid {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.comparison-item {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.comparison-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.comparison-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

/* Product Overview */
.product-overview {
    padding: var(--section-padding);
    background-color: var(--bg-color);
}

.product-overview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.product-content {
    flex: 1;
}

.product-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-overview .product-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-overview .product-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.product-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.product-features {
    margin: 3rem 0;
}

.product-features h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.product-features li {
    padding: 1rem 1.5rem;
    padding-left: 2.5rem;
    position: relative;
    background-color: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 0.75rem;
}

.product-features li:last-child {
    margin-bottom: 0;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Product Models Section */
.product-models-section {
    padding: var(--section-padding);
    background-color: #f8f9fa;
}

.product-models-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.model-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.model-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.model-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.model-card p {
    color: #666;
}

/* Solutions Section */
.solutions-section {
    padding: var(--section-padding);
    background-color: rgba(255, 255, 255, 1);
}

.solutions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 1.5rem;
    object-fit: cover;
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.solutions-visual {
    margin-top: 3rem;
    text-align: center;
}

.solutions-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission-section {
    padding: var(--section-padding);
    background-color: var(--bg-color);
    text-align: center;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.mission-text {
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
}

/* History Section */
.history-section {
    padding: var(--section-padding);
    background-color: #f8f9fa;
}

.history-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.history-section p {
    font-size: 1.1rem;
    line-height: 2;
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background-color: var(--bg-color);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border: 3px solid var(--primary-color);
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.4;
}

/* Company Section */
.company-section {
    padding: var(--section-padding);
    background-color: #f8f9fa;
}

.company-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.company-info {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.company-info p {
    font-size: 1.1rem;
    margin: 1rem 0;
    line-height: 2;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.1rem;
}

.company-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    width: 200px;
    vertical-align: top;
}

.company-table td {
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    line-height: 1.8;
}

.company-table tr:last-child td {
    border-bottom: none;
}

.company-table ul,
.company-table ol {
    margin: 0.5rem 0;
    padding-left: 2rem;
}

.company-table li {
    margin: 0.5rem 0;
    line-height: 1.8;
}

/* Downloads Section */
.downloads-section {
    padding: var(--section-padding);
    background-color: var(--bg-color);
}

.downloads-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.downloads-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.download-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.download-card:hover {
    transform: translateY(-5px);
}

.download-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.download-card p {
    margin-bottom: 2rem;
    color: #666;
}

/* Privacy Section */
.privacy-section {
    padding: var(--section-padding);
    background-color: var(--bg-color);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.privacy-content h2:first-of-type {
    margin-top: 0;
}

.privacy-content p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: #333;
}

.privacy-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-content li {
    font-size: 1.1rem;
    line-height: 2;
    margin: 0.5rem 0;
    color: #333;
}

.privacy-updated {
    text-align: right;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.privacy-contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.privacy-contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background-color: #f8f9fa;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

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

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .lang-toggle-container {
        margin-left: 0.5rem;
    }

    .lang-toggle {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

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

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .intro-product-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-content {
        text-align: center;
    }

    .product-overview-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-overview .product-image-wrapper {
        position: static;
    }

    .highlight-cards,
    .tech-cards,
    .solution-cards,
    .team-cards,
    .model-cards {
        grid-template-columns: 1fr;
    }

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

    .download-cards {
        grid-template-columns: 1fr;
    }

    .footer .container {
        flex-direction: column;
    }

    .video-section {
        padding: 40px 0;
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden;
        box-sizing: border-box;
    }

    .video-section .container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }

    .video-player,
    #hls-video {
        border-radius: 5px;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box;
    }
}

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

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .video-section {
        padding: 30px 0;
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden;
        box-sizing: border-box;
    }

    .video-section .container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
    }

    .video-player,
    #hls-video {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 5px;
        box-sizing: border-box;
    }

    .container {
        padding: 0 15px;
    }
}









